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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #03045e 100%);
    min-height: 100vh;
}

.navbar {
    background: rgba(3, 4, 94, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    color: #90e0ef;
}

.logo-icon {
    font-size: 2.2rem;
}

.menu-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu-item {
    color: #caf0f8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #90e0ef;
    transition: width 0.3s ease;
}

.menu-item:hover,
.menu-item.active {
    color: #90e0ef;
}

.menu-item:hover::after,
.menu-item.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 28px;
    height: 3px;
    background: #90e0ef;
    border-radius: 3px;
    transition: 0.3s;
}

.page-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-splash {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9), rgba(0, 119, 182, 0.9));
    padding: 5rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.splash-inner h1 {
    font-size: 3.5rem;
    color: #90e0ef;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.splash-desc {
    font-size: 1.25rem;
    color: #caf0f8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}

.action-link {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.action-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.6);
    background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-top: 5px solid;
    transition: transform 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
}

.block-cyan {
    border-color: #00b4d8;
}

.block-teal {
    border-color: #48cae4;
}

.block-blue {
    border-color: #0077b6;
}

.block-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-block h3 {
    font-size: 1.5rem;
    color: #03045e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-block p {
    color: #555;
    line-height: 1.75;
}

.story-section {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.story-container h2 {
    font-size: 2.8rem;
    color: #03045e;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
}

.story-paragraph {
    font-size: 1.15rem;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    line-height: 1.85;
}

.highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 60px;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-size: 1.3rem;
    color: #03045e;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.highlight-item p {
    color: #666;
    line-height: 1.75;
}

.game-spotlight {
    margin-bottom: 3rem;
}

.spotlight-container {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9), rgba(0, 119, 182, 0.9));
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.spotlight-container h2 {
    font-size: 2.8rem;
    color: #90e0ef;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.spotlight-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #caf0f8;
    margin-bottom: 3rem;
}

.game-frame-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

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

.game-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #caf0f8;
}

.steps-section {
    margin-bottom: 3rem;
}

.steps-container {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.steps-container h2 {
    font-size: 2.8rem;
    color: #03045e;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

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

.step-card {
    text-align: center;
}

.step-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 80px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #03045e;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-card p {
    color: #666;
    line-height: 1.75;
}

.page-footer {
    background: rgba(3, 4, 94, 0.95);
    padding: 3.5rem 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.footer-section h4 {
    color: #90e0ef;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #caf0f8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #caf0f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #90e0ef;
}

.footer-bottom {
    border-top: 1px solid rgba(144, 224, 239, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #90e0ef;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.age-gate.hidden {
    display: none;
}

.gate-content {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 3px solid #00b4d8;
}

.gate-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.gate-content h2 {
    font-size: 2.3rem;
    color: #03045e;
    margin-bottom: 1rem;
    font-weight: 800;
}

.gate-content p {
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gate-btn {
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yes-btn {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: #fff;
}

.yes-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.5);
}

.no-btn {
    background: #6c757d;
    color: #fff;
}

.no-btn:hover {
    background: #5a6268;
}

.legal-banner {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9), rgba(0, 119, 182, 0.9));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-banner-inner h1 {
    font-size: 3.2rem;
    color: #90e0ef;
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-updated {
    color: #caf0f8;
    font-size: 1.1rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-container {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.legal-doc h2 {
    font-size: 2rem;
    color: #00b4d8;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-doc h2:first-child {
    margin-top: 0;
}

.legal-doc p,
.legal-doc li {
    color: #555;
    line-height: 1.85;
}

.legal-doc ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-doc li {
    margin-bottom: 0.7rem;
}

.legal-doc a {
    color: #00b4d8;
    text-decoration: none;
}

.legal-doc a:hover {
    text-decoration: underline;
}

.play-header {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9), rgba(0, 119, 182, 0.9));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-header-inner h1 {
    font-size: 3.2rem;
    color: #90e0ef;
    margin-bottom: 1rem;
    font-weight: 800;
}

.play-header-inner p {
    font-size: 1.2rem;
    color: #caf0f8;
}

.play-section {
    margin-bottom: 2rem;
}

.play-section-inner {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9), rgba(0, 119, 182, 0.9));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.game-frame-wrapper-full {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

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

.play-help {
    margin-bottom: 2rem;
}

.help-container {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.help-container h2 {
    font-size: 2.5rem;
    color: #03045e;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.help-box {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.help-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.help-box h3 {
    font-size: 1.3rem;
    color: #03045e;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.help-box p {
    color: #666;
    line-height: 1.75;
}

.play-notice {
    margin-bottom: 3rem;
}

.notice-banner {
    background: rgba(255, 193, 7, 0.15);
    border-left: 5px solid #ffc107;
    padding: 2.5rem;
    border-radius: 15px;
}

.notice-banner h3 {
    font-size: 1.8rem;
    color: #03045e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-banner p {
    color: #555;
    line-height: 1.85;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 4, 94, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 15px 15px;
    }
    
    .menu-wrapper.active {
        display: flex;
    }
    
    .menu-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(144, 224, 239, 0.2);
    }
    
    .splash-inner h1 {
        font-size: 2.5rem;
    }
    
    .splash-desc {
        font-size: 1.1rem;
    }
    
    .game-frame {
        height: 450px;
    }
    
    .game-frame-full {
        height: 550px;
    }
    
    .story-section,
    .steps-container,
    .help-container,
    .legal-container {
        padding: 3rem 1.5rem;
    }
}
