* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #2c3e50;
    --slate: #34495e;
    --royal-purple: #8e44ad;
    --soft-purple: #9b59b6;
    --pearl: #ecf0f1;
    --silver: #bdc3c7;
    --charcoal: #2d2d2d;
}

body {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to bottom, var(--midnight), var(--slate));
    color: var(--pearl);
    line-height: 1.9;
    min-height: 100vh;
}

.site-header {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--royal-purple);
    position: sticky;
    top: 0;
    z-index: 800;
}

.header-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 2rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--pearl);
}

.brand-icon {
    width: 60px;
    height: 60px;
}

.brand-text {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--pearl);
}

.navigation {
    display: flex;
    gap: 3.5rem;
    list-style: none;
}

.navigation a {
    color: var(--silver);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.navigation a:hover {
    color: var(--royal-purple);
    border-bottom-color: var(--royal-purple);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-line {
    width: 35px;
    height: 2px;
    background: var(--pearl);
    transition: all 0.3s;
}

.hero-area {
    padding: 8rem 6%;
    text-align: center;
    border-bottom: 1px solid rgba(142, 68, 173, 0.3);
}

.hero-area h1 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: var(--pearl);
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    color: var(--silver);
    max-width: 1000px;
    margin: 0 auto 3.5rem;
    line-height: 2;
}

.elegant-button {
    display: inline-block;
    padding: 1.5rem 4.5rem;
    background: transparent;
    border: 2px solid var(--royal-purple);
    color: var(--pearl);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.elegant-button:hover {
    background: var(--royal-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(142, 68, 173, 0.5);
}

.content-area {
    padding: 6rem 6%;
    border-bottom: 1px solid rgba(142, 68, 173, 0.3);
}

.area-title {
    font-size: 3.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4.5rem;
    letter-spacing: 2px;
    color: var(--pearl);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.content-card {
    padding: 3.5rem;
    background: rgba(52, 73, 94, 0.5);
    border: 1px solid rgba(142, 68, 173, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.content-card:hover {
    background: rgba(52, 73, 94, 0.7);
    border-color: var(--royal-purple);
    transform: translateY(-5px);
}

.content-card h3 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    letter-spacing: 1px;
    color: var(--soft-purple);
}

.content-card p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--silver);
    line-height: 2;
}

.game-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(52, 73, 94, 0.5);
    border: 2px solid var(--royal-purple);
    overflow: hidden;
}

.game-wrapper iframe {
    width: 100%;
    height: 820px;
    border: none;
    display: block;
}

.site-footer {
    padding: 4rem 6%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--royal-purple);
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--royal-purple);
}

.legal-container {
    padding: 5rem 6%;
    max-width: 1500px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: var(--pearl);
}

.legal-container h3 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--soft-purple);
}

.legal-container p, .legal-container ul {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 1.8rem;
    line-height: 2;
}

.legal-container ul {
    margin-left: 3.5rem;
}

.legal-container li {
    margin-bottom: 1rem;
}

.verification-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.verification-overlay.active {
    display: flex;
}

.verification-dialog {
    background: var(--midnight);
    padding: 4.5rem;
    border: 2px solid var(--royal-purple);
    text-align: center;
    max-width: 650px;
}

.verification-dialog h2 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    color: var(--pearl);
}

.verification-dialog p {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 3.5rem;
    line-height: 2;
}

.verification-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.verification-btn {
    padding: 1.3rem 3.5rem;
    border: 2px solid;
    background: transparent;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.verification-btn.accept {
    border-color: var(--royal-purple);
    color: var(--pearl);
}

.verification-btn.accept:hover {
    background: var(--royal-purple);
}

.verification-btn.decline {
    border-color: var(--silver);
    color: var(--silver);
}

.verification-btn.decline:hover {
    background: var(--silver);
    color: var(--midnight);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 100px);
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 3.5rem 2.5rem;
        border-left: 1px solid var(--royal-purple);
        transition: right 0.4s ease;
        gap: 2rem;
    }

    .navigation.open {
        right: 0;
    }

    .hero-area h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .area-title {
        font-size: 2.8rem;
    }

    .game-wrapper iframe {
        height: 520px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .grid-layout {
        grid-template-columns: 1fr;
    }
}
