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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    color: #fff;
    min-height: 100vh;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.logo-text {
    font-size: 1.9rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.site-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
}

.site-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-line {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Card */
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, #a8c0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Notice Card */
.notice-card {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(238, 90, 111, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notice-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

.notice-card ul {
    list-style: none;
}

.notice-card li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.notice-card li:before {
    content: '⚡ ';
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Game Card */
.game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-card h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.game-window {
    width: 100%;
    height: 650px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Info Card */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.info-card h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-card h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
    color: #a8c0ff;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-card ul,
.info-card ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.info-card li {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Styles */
.bottom-footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding: 3.5rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #a8c0ff;
}

.footer-item p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-item a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
}

.footer-item a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-end {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

.age-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 3.5rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-card h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
}

.modal-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}

.modal-btn.yes {
    background: white;
    color: #667eea;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.modal-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.modal-btn.no {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-btn.no:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .site-nav ul {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem 0;
        text-align: center;
        transition: left 0.3s;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        gap: 0.5rem;
    }
    
    .site-nav ul.show {
        left: 0;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .hero-card h1 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .game-window {
        height: 450px;
    }
    
    .modal-card {
        margin: 0 20px;
        padding: 2.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}
