/* RayVora - Unique Split-Screen Layout */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
    --primary-purple: #6b2d9c;
    --secondary-orange: #ff6b35;
    --accent-gold: #f7b731;
    --dark-bg: #1a0f2e;
    --darker-bg: #0d0619;
    --text-light: #f0f0f0;
    --text-muted: #a8a8a8;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header with Split Design */
header {
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-orange) 100%);
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(107, 45, 156, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Navigation */
.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid transparent;
}

.navigation a:hover,
.navigation a.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-gold);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    border-radius: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Container */
.main-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Split Section */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.hero-left {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #4a1d6e 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid var(--accent-gold);
}

.hero-left h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-right {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, #d4541f 100%);
    padding: 3rem;
    border-radius: 20px;
    border-right: 5px solid var(--accent-gold);
}

.hero-right h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

/* Split Content Blocks */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.split-block {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(107, 45, 156, 0.3);
    transition: all 0.4s ease;
}

.split-block:nth-child(odd) {
    border-left: 4px solid var(--primary-purple);
}

.split-block:nth-child(even) {
    border-right: 4px solid var(--secondary-orange);
}

.split-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.split-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-orange);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.split-block p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.split-block ul,
.split-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.split-block li {
    margin-bottom: 0.5rem;
}

/* Full Width Section */
.full-section {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-top: 4px solid var(--primary-purple);
    border-bottom: 4px solid var(--secondary-orange);
}

.full-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.full-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--secondary-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.full-section p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.full-section ul,
.full-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.full-section li {
    margin-bottom: 0.5rem;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-purple) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.warning-box strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Game Section */
.game-section {
    background: var(--dark-bg);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 3px solid var(--primary-purple);
}

.game-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.game-section p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.game-section iframe {
    width: 100%;
    max-width: 950px;
    height: 650px;
    border: 4px solid var(--secondary-orange);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(107, 45, 156, 0.5);
}

/* Footer */
.site-footer {
    background: linear-gradient(90deg, var(--primary-purple) 0%, var(--secondary-orange) 100%);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Age Verification Modal */
.age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification-modal.show {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 15px 60px rgba(247, 183, 49, 0.4);
}

.age-modal-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.age-modal-box p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
}

.age-button-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button-group button {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-purple) 100%);
    color: white;
}

.btn-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-no {
    background: #555;
    color: white;
}

.btn-no:hover {
    background: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
    }

    .navigation {
        display: none;
        width: 100%;
        order: 3;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .navigation a {
        display: block;
        padding: 1rem;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle {
        display: block;
    }

    .logo-section h1 {
        font-size: 2rem;
    }

    .hero-split,
    .content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .game-section iframe {
        height: 450px;
    }

    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-button-group {
        flex-direction: column;
    }

    .age-button-group button {
        width: 100%;
    }
}
