* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FF6B35;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 900;
    color: #FFE66D;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

nav a:hover,
nav a.active {
    color: #FFE66D;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #FFE66D;
    margin: 4px 0;
    transition: 0.3s;
}

.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,107,53,0.2) 0%, rgba(22,33,62,0) 100%);
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFE66D;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.info-blocks {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,107,53,0.3);
    transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #FF6B35;
}

.info-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFE66D;
}

.game-section {
    padding: 80px 0;
    background: rgba(0,0,0,0.3);
}

.game-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.game-container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255,107,53,0.3);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #FFE66D;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #FFE66D;
}

.disclaimer-banner {
    padding: 60px 0;
    background: rgba(255,107,53,0.1);
    border-top: 2px solid #FF6B35;
    border-bottom: 2px solid #FF6B35;
}

.disclaimer-banner h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.disclaimer-banner p {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.play-header {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,107,53,0.2) 0%, rgba(22,33,62,0) 100%);
}

.play-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.game-play-section {
    padding: 40px 0 80px;
}

.game-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid rgba(255,107,53,0.3);
}

.game-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.game-info ul {
    list-style: none;
}

.game-info li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.game-info li:last-child {
    border-bottom: none;
}

.game-container-play {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(255,107,53,0.3);
}

.game-frame-full {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.game-notice {
    background: rgba(255,107,53,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    margin-top: 30px;
}

.game-notice p {
    font-size: 16px;
}

.legal-header {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,107,53,0.2) 0%, rgba(22,33,62,0) 100%);
}

.legal-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #FFE66D;
}

.update-date {
    font-size: 16px;
    opacity: 0.7;
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #FFE66D;
}

.legal-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

footer {
    background: rgba(0,0,0,0.5);
    border-top: 2px solid #FF6B35;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.responsible-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.responsible-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.responsible-links a:hover {
    color: #FFE66D;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFE66D;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-popup.show {
    display: flex;
}

.age-popup-content {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #FF6B35;
    box-shadow: 0 10px 50px rgba(255,107,53,0.5);
}

.age-popup-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #FFE66D;
}

.age-popup-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes,
.btn-no {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-yes {
    background: #FFE66D;
    color: #1a1a2e;
}

.btn-no {
    background: #FF6B35;
    color: #ffffff;
}

.btn-yes:hover,
.btn-no:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,107,53,0.5);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0,0,0,0.95);
        transition: left 0.3s;
        padding: 20px 0;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 500px;
    }

    .game-frame-full {
        height: 600px;
    }

    .features h2,
    .game-section h2 {
        font-size: 32px;
    }

    .legal-header h1,
    .play-header h1 {
        font-size: 32px;
    }

    .age-popup-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-yes,
    .btn-no {
        width: 100%;
    }
}
