@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;800&display=swap');

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

body {
    font-family: 'Raleway', sans-serif;
    background: #0a1828;
    color: #e8eef2;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #178a7b 0%, #0a1828 100%);
    padding: 1.5rem 3rem;
    box-shadow: 0 4px 20px rgba(23, 138, 123, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff6b6b;
    text-decoration: none;
    letter-spacing: 3px;
}

.menu-icon {
    display: none;
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 8px;
}

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

.main-nav a {
    color: #e8eef2;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #ff6b6b;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
}

.hero-banner {
    background: linear-gradient(135deg, #178a7b 0%, #0f3d3e 100%);
    padding: 5rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 15px 50px rgba(23, 138, 123, 0.2);
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 3rem 0 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #b8dbd9;
    font-weight: 300;
}

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

.info-card {
    background: linear-gradient(135deg, #0f3d3e 0%, #0a1828 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #178a7b;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(23, 138, 123, 0.3);
}

.card-title {
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-text {
    line-height: 1.9;
    color: #b8dbd9;
}

.notice-panel {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44569 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: #fff;
}

.notice-panel h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.notice-panel p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.game-showcase {
    background: #0f3d3e;
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    border: 3px solid #178a7b;
}

.game-frame {
    max-width: 1200px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.text-section {
    background: rgba(15, 61, 62, 0.5);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    border-left: 6px solid #ff6b6b;
}

.text-section p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.text-section p:last-child {
    margin-bottom: 0;
}

footer {
    background: #0f3d3e;
    padding: 3rem;
    margin-top: 5rem;
    text-align: center;
    border-top: 4px solid #178a7b;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ff8787;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 24, 40, 0.98);
    z-index: 50000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #0f3d3e 0%, #178a7b 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 650px;
    border: 5px solid #ff6b6b;
    box-shadow: 0 0 80px rgba(255, 107, 107, 0.4);
}

.age-gate h2 {
    font-size: 3.5rem;
    margin-top: 0;
    color: #ff6b6b;
}

.age-gate p {
    font-size: 1.3rem;
    margin: 2rem 0;
    line-height: 2;
    color: #b8dbd9;
}

.age-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.age-btn {
    padding: 1.5rem 4rem;
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-btn.accept {
    background: #ff6b6b;
    color: #fff;
}

.age-btn.accept:hover {
    background: #ff8787;
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.age-btn.decline {
    background: #1a1a2e;
    color: #fff;
}

.age-btn.decline:hover {
    background: #16213e;
    transform: scale(1.08);
}

@media (max-width: 968px) {
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0a1828;
        transition: right 0.3s;
        padding-top: 5rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(23, 138, 123, 0.3);
    }
    
    header {
        padding: 1.5rem;
    }
    
    .container {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-banner {
        padding: 3rem 2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame iframe {
        height: 500px;
    }
    
    .age-gate-content {
        margin: 1rem;
        padding: 3rem 2rem;
    }
    
    .age-gate h2 {
        font-size: 2.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
}
