@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #0ea5e9;
    --deep-blue: #0369a1;
    --navy: #0c4a6e;
    --coral: #f97316;
    --coral-light: #fb923c;
    --bg-primary: #020617;
    --bg-secondary: #0f172a;
    --bg-tertiary: #1e293b;
    --white: #f8fafc;
    --gray: #94a3b8;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.3);
}

.nav-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-symbol {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--ocean-blue);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ocean-blue);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.25s;
}

.nav-menu a:hover {
    background: var(--ocean-blue);
}

@media (max-width: 850px) {
    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 25px;
        display: none;
        gap: 8px;
    }

    .nav-menu.visible {
        display: flex;
    }

    .nav-menu a {
        background: var(--bg-tertiary);
        padding: 16px 25px;
    }
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    background: radial-gradient(ellipse at top, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

.hero-inner h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-inner h1 span {
    color: var(--ocean-blue);
}

.hero-inner p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
}

/* Alert Boxes */
.alerts-section {
    padding: 60px 30px;
    background: var(--bg-secondary);
}

.alerts-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.alert-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: var(--bg-tertiary);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--ocean-blue);
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-8px);
}

.alert-card .symbol {
    font-size: 3rem;
    margin-bottom: 18px;
}

.alert-card h3 {
    color: var(--coral-light);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.alert-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Game Panel */
.game-panel {
    padding: 70px 30px;
    background: var(--bg-primary);
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--ocean-blue);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
}

.game-bar {
    background: linear-gradient(90deg, var(--deep-blue) 0%, var(--ocean-blue) 100%);
    padding: 20px 30px;
    text-align: center;
}

.game-bar h2 {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.game-viewport {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.game-viewport iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Highlights Section */
.highlights {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.highlights-header {
    text-align: center;
    margin-bottom: 55px;
}

.highlights-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
}

.highlights-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.highlights-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 35px;
}

.highlight-item {
    background: var(--bg-tertiary);
    padding: 40px 35px;
    border-radius: 16px;
    border-left: 5px solid var(--coral);
    transition: all 0.3s;
}

.highlight-item:hover {
    background: var(--bg-secondary);
    border-left-color: var(--ocean-blue);
}

.highlight-item .ico {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.highlight-item h3 {
    color: var(--ocean-blue);
    font-size: 1.15rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.highlight-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Description Block */
.description-block {
    padding: 70px 30px;
    background: var(--bg-primary);
}

.description-content {
    max-width: 950px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

.description-content h2 {
    color: var(--coral);
    font-size: 2rem;
    margin-bottom: 25px;
}

.description-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Page Title */
.page-title {
    padding: 130px 30px 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-title h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    color: var(--ocean-blue);
}

.page-title p {
    color: var(--gray);
    font-size: 1.15rem;
}

/* Legal Sections */
.legal-section {
    padding: 50px 30px 90px;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--ocean-blue);
    font-size: 1.55rem;
    margin: 45px 0 18px;
    font-weight: 700;
}

.legal-content h3 {
    color: var(--coral-light);
    font-size: 1.2rem;
    margin: 30px 0 14px;
    font-weight: 600;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1rem;
}

.legal-content ul, .legal-content ol {
    margin: 18px 0 25px 35px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 12px;
    font-size: 1rem;
}

/* Play Tips */
.play-tips {
    max-width: 850px;
    margin: 45px auto;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--coral);
    border-radius: 14px;
    padding: 28px 35px;
}

.play-tips h3 {
    color: var(--coral);
    margin-bottom: 14px;
    font-size: 1.15rem;
    font-weight: 700;
}

.play-tips p {
    color: var(--gray);
    margin: 0;
    font-size: 0.98rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 55px 30px 35px;
    border-top: 2px solid rgba(14, 165, 233, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1rem;
}

.responsible-area h4 {
    color: var(--coral-light);
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 600;
}

.responsible-area .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.responsible-area a {
    color: var(--gray);
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid rgba(14, 165, 233, 0.4);
    border-radius: 25px;
    font-size: 0.92rem;
    transition: all 0.3s;
}

.responsible-area a:hover {
    border-color: var(--ocean-blue);
    color: var(--ocean-blue);
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--gray);
    font-size: 0.88rem;
}

/* Age Modal */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 25px;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: var(--bg-secondary);
    border: 3px solid var(--ocean-blue);
    border-radius: 28px;
    padding: 55px 50px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 100px rgba(14, 165, 233, 0.3);
}

.age-box .icon-large {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.age-box h2 {
    color: var(--coral);
    font-size: 2rem;
    margin-bottom: 18px;
}

.age-box p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.age-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btns button {
    padding: 16px 42px;
    font-size: 1.05rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btns .btn-yes {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    color: white;
}

.age-btns .btn-yes:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 35px rgba(14, 165, 233, 0.45);
}

.age-btns .btn-no {
    background: transparent;
    color: var(--gray);
    border: 2px solid var(--gray);
}

.age-btns .btn-no:hover {
    border-color: #ef4444;
    color: #ef4444;
}
