/* Voidoryn.xyz - Dark Void Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --void-dark: #0a0a12;
    --void-purple: #1a1a2e;
    --void-accent: #7b2cbf;
    --void-glow: #9d4edd;
    --void-light: #e0aaff;
    --void-text: #f0f0f0;
    --void-muted: #a0a0b0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--void-dark);
    color: var(--void-text);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header & Navigation */
.site-header {
    background: linear-gradient(180deg, var(--void-purple) 0%, transparent 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--void-glow), var(--void-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--void-glow);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-family: 'Orbitron', sans-serif;
    color: var(--void-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    background: var(--void-accent);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(123, 44, 191, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(157, 78, 221, 0.1) 0%, transparent 40%),
        var(--void-dark);
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--void-text) 0%, var(--void-light) 50%, var(--void-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--void-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.notice-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.badge {
    background: rgba(123, 44, 191, 0.2);
    border: 1px solid var(--void-accent);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--void-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.1rem;
}

/* Game Container */
.game-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--void-dark) 0%, var(--void-purple) 50%, var(--void-dark) 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--void-light);
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(123, 44, 191, 0.3);
    box-shadow: 0 0 60px rgba(123, 44, 191, 0.2);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--void-purple), rgba(26, 26, 46, 0.5));
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(123, 44, 191, 0.2);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--void-accent);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--void-light);
}

.feature-card p {
    color: var(--void-muted);
    line-height: 1.8;
}

/* Info Section */
.info-section {
    padding: 5rem 2rem;
    background: var(--void-purple);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.info-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--void-light);
}

.info-section p {
    font-size: 1.1rem;
    color: var(--void-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: var(--void-dark);
    border-top: 1px solid rgba(123, 44, 191, 0.2);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--void-glow);
    margin-bottom: 1.5rem;
}

.responsible-gambling {
    margin-bottom: 2rem;
}

.responsible-gambling h4 {
    font-size: 1rem;
    color: var(--void-light);
    margin-bottom: 1rem;
}

.responsible-gambling a {
    color: var(--void-muted);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.responsible-gambling a:hover {
    color: var(--void-glow);
}

.footer-text {
    color: var(--void-muted);
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--void-purple), var(--void-dark));
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    border: 2px solid var(--void-accent);
    box-shadow: 0 0 80px rgba(123, 44, 191, 0.4);
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--void-light);
}

.age-modal p {
    color: var(--void-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    font-family: 'Orbitron', sans-serif;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--void-accent), var(--void-glow));
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--void-muted);
    border: 2px solid var(--void-muted);
}

.btn-secondary:hover {
    border-color: var(--void-glow);
    color: var(--void-glow);
}

/* Page Styles */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        var(--void-dark);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--void-light);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--void-glow);
    margin: 2.5rem 0 1rem;
}

.page-content p, .page-content li {
    color: var(--void-muted);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.page-content ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--void-purple);
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--void-accent);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(123, 44, 191, 0.2);
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .notice-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .game-frame {
        height: 400px;
    }

    .game-wrapper {
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .age-buttons {
        flex-direction: column;
    }

    .responsible-gambling a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .game-frame {
        height: 320px;
    }
}
