* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f1e;
    color: #e5e5e5;
    line-height: 1.7;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1e1e3f 0%, #2d2d5f 100%);
    padding: 3.5rem 3rem;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #9333ea;
    box-shadow: 0 20px 80px rgba(147, 51, 234, 0.4);
}

.age-gate-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.age-main-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.age-sub-text {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #fff;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.5);
}

.btn-deny {
    background: #374151;
    color: #d1d5db;
}

.btn-deny:hover {
    background: #4b5563;
}

.main-header {
    background: rgba(30, 30, 63, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.header-wrap {
    max-width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 3px;
    transition: all 0.3s;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #9333ea;
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hero-banner {
    background: linear-gradient(135deg, #1e1e3f 0%, #2d2d5f 50%, #3d1e5f 100%);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    background: rgba(147, 51, 234, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #9333ea;
    font-weight: 600;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.content-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
}

.about-velkynor {
    background: rgba(30, 30, 63, 0.5);
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.key-information {
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a35 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card.purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
    border: 2px solid #9333ea;
}

.info-card.gold {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 2px solid #fbbf24;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.game-showcase {
    background: rgba(30, 30, 63, 0.5);
}

.section-subtext {
    text-align: center;
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.game-embed {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #9333ea;
    box-shadow: 0 15px 60px rgba(147, 51, 234, 0.3);
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.game-detail {
    background: rgba(147, 51, 234, 0.1);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.why-velkynor {
    background: linear-gradient(180deg, #1a1a35 0%, #0f0f1e 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-box {
    background: rgba(30, 30, 63, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.4);
    transition: all 0.3s;
}

.benefit-box:hover {
    border-color: #9333ea;
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-box h3 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, #2d2d5f 0%, #1e1e3f 100%);
}

.cta-container {
    text-align: center;
    padding: 3rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 25px;
    border: 2px solid #9333ea;
}

.cta-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    color: #fff;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.5);
}

.site-footer {
    background: rgba(15, 15, 30, 0.95);
    border-top: 2px solid #9333ea;
    padding: 3rem 3rem 1.5rem;
}

.footer-inner {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #9333ea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
    color: #6b7280;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        display: block;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .header-wrap {
        padding: 1.2rem 1.5rem;
    }

    .content-wrap {
        padding: 3rem 1.5rem;
    }

    .hero-banner {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .game-iframe {
        height: 450px;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2.5rem 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .age-gate-content h1 {
        font-size: 2rem;
    }
}