* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom right, #2c1810, #4a2c1a, #6b4423);
    color: #f5e6d3;
    line-height: 1.8;
    min-height: 100vh;
}

.main-nav {
    background: rgba(20, 10, 5, 0.95);
    border-bottom: 3px solid #d4a574;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4a574;
}

.logo-icon {
    font-size: 2.5rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: #d4a574;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-list a {
    color: #f5e6d3;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    background: rgba(212, 165, 116, 0.2);
    color: #d4a574;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 90, 43, 0.15));
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid rgba(212, 165, 116, 0.4);
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #d4a574;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #d9c3a5;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(139, 90, 43, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 2px solid #8b5a2b;
    font-weight: 600;
}

.alert-section {
    margin: 3rem 0;
}

.alert-box {
    background: rgba(212, 165, 116, 0.1);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #d4a574;
}

.alert-box h2 {
    color: #d4a574;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.alert-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.alert-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #d4a574;
}

.alert-item h3 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.intro-section {
    margin: 3rem 0;
}

.intro-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.intro-wrapper h2 {
    color: #d4a574;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-wrapper p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.game-section {
    margin: 4rem 0;
}

.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h2 {
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.game-header p {
    font-size: 1.15rem;
    color: #d9c3a5;
}

.game-wrapper {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #8b5a2b;
    box-shadow: 0 0 25px rgba(139, 90, 43, 0.4);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.game-footer {
    margin-top: 1.5rem;
    text-align: center;
    background: rgba(212, 165, 116, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
}

.benefits-section {
    margin: 4rem 0;
}

.benefits-section h2 {
    font-size: 2.8rem;
    color: #d4a574;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    border-color: #d4a574;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-section {
    margin: 4rem 0;
}

.values-wrapper {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 90, 43, 0.1));
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #d4a574;
}

.values-wrapper h2 {
    color: #d4a574;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.values-content p {
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.cta-section {
    margin: 4rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.3), rgba(212, 165, 116, 0.2));
    padding: 4rem 3rem;
    border-radius: 15px;
    border: 3px solid #d4a574;
}

.cta-box h2 {
    color: #d4a574;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574, #b8925f);
    color: #2c1810;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.5);
}

.main-footer {
    background: rgba(20, 10, 5, 0.95);
    border-top: 3px solid #d4a574;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-block h4 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin: 0.7rem 0;
}

.footer-block a {
    color: #d9c3a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #d4a574;
}

.footer-legal {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    color: #a89278;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 10, 5, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.overlay.hidden {
    display: none;
}

.check-container {
    background: linear-gradient(135deg, #2c1810, #4a2c1a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #d4a574;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.4);
}

.check-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.check-container h2 {
    color: #d4a574;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.check-container p {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.check-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574, #b8925f);
    color: #2c1810;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #f5e6d3;
    border: 2px solid #666;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.page-header {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(139, 90, 43, 0.15));
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 165, 116, 0.4);
}

.page-header h1 {
    font-size: 2.8rem;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.instructions-section {
    margin: 2rem 0;
}

.instructions-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.instructions-box h2 {
    color: #d4a574;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.instruction-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.inst-icon {
    font-size: 2.5rem;
}

.play-area {
    margin: 2rem 0;
}

.play-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #8b5a2b;
    box-shadow: 0 0 25px rgba(139, 90, 43, 0.4);
}

.play-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.tips-section {
    margin: 2rem 0;
}

.tips-box {
    background: rgba(212, 165, 116, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #d4a574;
}

.tips-box h3 {
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tips-items {
    list-style: none;
}

.tips-items li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.tips-items li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 1.5rem;
}

.legal-container {
    max-width: 950px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3rem;
    color: #d4a574;
    text-align: center;
    margin-bottom: 1rem;
}

.legal-date {
    text-align: center;
    color: #a89278;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 15px;
    border-left: 5px solid #d4a574;
}

.legal-section h2 {
    color: #d4a574;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}

.legal-section p {
    margin-bottom: 1.2rem;
}

.legal-section ul {
    margin-left: 2.5rem;
    margin-bottom: 1.2rem;
}

.legal-section li {
    margin: 0.6rem 0;
}

.legal-section.highlight {
    background: rgba(212, 165, 116, 0.15);
    border: 3px solid #d4a574;
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(20, 10, 5, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0.5rem;
        box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
    }

    .nav-list.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .game-embed,
    .play-frame {
        height: 500px;
    }

    .benefits-grid,
    .alert-content,
    .instruction-grid {
        grid-template-columns: 1fr;
    }

    .check-buttons {
        flex-direction: column;
    }
}
