/* New Year 2026 Landing Page Styles */
@import url('style.css');
/* Import base styles */

:root {
    --ny-gold: #FFD700;
    --ny-gold-dark: #DAA520;
    --ny-purple: #2E0249;
    --ny-purple-dark: #1A0033;
    --ny-bg-gradient: linear-gradient(135deg, var(--ny-purple-dark), var(--ny-purple));
    --ny-text-gold: #F4E798;
}

/* Override existing styles for this page */
body {
    background-color: #fbfffe;
}

.ny-hero {
    background: linear-gradient(rgba(26, 0, 51, 0.9), rgba(46, 2, 73, 0.85)),
        url('https://images.unsplash.com/photo-1467810563316-b5476525c0f9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    /* Festive Fireworks/Lights bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.ny-hero h1 {
    font-size: 3.5rem;
    color: var(--ny-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.ny-hero p {
    font-size: 1.5rem;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Premium Offer Card */
.offer-section {
    padding: 4rem 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.premium-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--ny-gold);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--ny-gold), var(--ny-gold-dark), var(--ny-gold));
}

.badge-offer {
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(255, 75, 43, 0.4);
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin: 1rem 0;
}

.price-tag span {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Feature Circles */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.feature-item:hover .feature-icon {
    background: var(--ny-gold);
    color: white;
    transform: rotateY(180deg);
}

/* Call to Action Buttons */
.btn-gold-pulse {
    background: linear-gradient(135deg, var(--ny-gold), var(--ny-gold-dark));
    color: #000;
    font-weight: 800;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.4);
    animation: pulse-gold 2s infinite;
}

.btn-gold-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(218, 165, 32, 0.6);
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background: #f9f9f9;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: 0.3s;
}

.audience-card:hover {
    transform: translateY(-10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ny-hero {
        padding: 140px 0 80px;
    }

    .ny-hero h1 {
        font-size: 2.5rem;
    }

    .premium-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .price-tag {
        font-size: 3rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}