@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,600;0,800;1,600&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-card: rgba(22, 22, 29, 0.7);
    --gold: #d4af37;
    --gold-bright: #f3c623;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;
    --primary: #c29d38;
    --secondary: #e6c66c;
    --accent: #ff4d4d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #09090b;
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-bright);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header {
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    background: transparent;
}

.btn-header:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

.btn-header.solid {
    background: var(--gold);
    color: #000;
}

.btn-header.solid:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(194, 157, 56, 0.15) 0%, rgba(9, 9, 11, 1) 70%), url('../images/plutonium_glasses.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.diwali-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff4d4d, #d4af37);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff 40%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}

.price-tag {
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-value {
    color: var(--gold-bright);
    text-shadow: 0 0 20px var(--gold-glow);
    font-size: 2.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.6rem;
    font-weight: 500;
    margin-right: 8px;
}

.price-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--gold-glow);
}

.btn-secondary {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 13px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--text-light);
    color: #000;
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 100px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

/* Diwali Bonanza prizes */
.bonanza-section {
    background: linear-gradient(180deg, #09090b 0%, #121217 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.bonanza-banner-card {
    background: rgba(22, 22, 29, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.bonanza-banner-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.bonanza-banner-img:hover {
    transform: scale(1.02);
}

.bonanza-banner-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gold-bright);
}

.bonanza-banner-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.prize-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.prize-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.prize-badge.highlight {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
    font-weight: 600;
}

/* Prize Grid */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.prize-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.prize-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.prize-card:hover::before {
    opacity: 1;
}

.prize-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.prize-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.prize-card:hover .prize-img {
    transform: scale(1.08);
}

.prize-card.mega-prize {
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.05);
}

.prize-card.mega-prize::after {
    content: 'MEGA PRIZE';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.prize-qty {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
}

.prize-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 10px 0 5px 0;
    font-weight: 700;
}

.prize-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Products Section */
.products-section {
    background-color: #09090b;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: #121217;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-price-wrapper .price-original {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 400;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-bright);
}

.btn-buy {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, #121217 0%, #09090b 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    color: var(--gold-bright);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 0 20px var(--gold-glow);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0 0 15px 0;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #16161d;
    border: 2px solid var(--gold);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 50px rgba(212,175,55,0.25);
    animation: scaleUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent);
}

.ticket-box {
    background: #0d0d11;
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
}

.ticket-number {
    font-family: monospace;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--gold-bright);
}

/* Footer */
footer {
    background: #050507;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 8% 30px 8%;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold-bright);
    cursor: pointer;
    z-index: 105;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(9, 9, 11, 0.98);
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        padding: 20px 0;
        gap: 15px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        display: block;
        padding: 8px 0;
    }
}

@media (max-width: 992px) {
    .bonanza-banner-card {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    header {
        padding: 15px 5%;
    }
    section {
        padding: 60px 5%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        /* overridden by 768px rule */
    }
    .price-tag {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 25px;
    }
    .price-original {
        font-size: 1.2rem;
    }
    .price-value {
        font-size: 2rem;
    }
    .price-sub {
        font-size: 0.85rem;
    }
    .bonanza-banner-card {
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
        margin-bottom: 40px;
    }
    .bonanza-banner-info h3 {
        font-size: 1.8rem;
    }
}

/* Benefits Box Styles */
.benefits-box {
    margin: 15px 0 20px 0;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    text-align: left;
}

.benefits-box strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-bright);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.benefits-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-box li {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-box li i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* Auth Modal Specific Styles */
.auth-content {
    max-width: 450px !important;
    padding: 35px 30px !important;
    background: rgba(15, 15, 20, 0.95) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1) !important;
}

.auth-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.auth-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.auth-tab:hover {
    color: var(--gold-bright);
}

.auth-tab.active {
    color: var(--gold-bright);
    border-bottom: 2.5px solid var(--gold);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeIn 0.4s ease;
}

.auth-form.hidden {
    display: none;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.input-group input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.auth-toggle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

.auth-toggle a {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-toggle a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bright Hr Dividers */
hr, .border-light {
    border-color: rgba(255, 255, 255, 0.25) !important;
    opacity: 1 !important;
}


