* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #fff8f0;
    color: #2d2d2d;
    line-height: 1.7;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-container {
    background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
    border-radius: 20px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 40px;
    text-align: center;
    color: #fff;
}

.modal-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 35px 40px;
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.modal-actions {
    padding: 0 40px 40px;
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #666;
    border-color: #ddd;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.navigation {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: #ff6b35;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: #ff6b35;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 80px 30px;
    background: rgba(255, 255, 255, 0.05);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-container h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-lead {
    font-size: 1.6rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.intro-block,
.highlights,
.benefits,
.call-to-action {
    padding: 90px 30px;
}

.game-display {
    padding: 70px 30px 90px;
    background: #fff;
}

.wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: #2d2d2d;
    font-weight: 700;
}

.intro-block {
    background: #fff;
}

.intro-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-col p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8;
}

.game-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-frame-container {
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.game-iframe {
    width: 100%;
    height: 650px;
    display: block;
}

.game-disclaimer {
    max-width: 850px;
    margin: 35px auto 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
}

.game-disclaimer p {
    color: #d84315;
    font-weight: 500;
    margin: 0;
    text-align: left;
}

.highlights {
    background: #fff8f0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.highlight-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.highlight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #ff6b35;
    font-weight: 700;
}

.highlight-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.benefits {
    background: #fff;
}

.benefits-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 45px;
    padding: 35px;
    background: #fff8f0;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.benefit-marker {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.benefit-details h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2d2d2d;
    font-weight: 700;
}

.benefit-details p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

.call-to-action {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    text-align: center;
    color: #fff;
}

.call-to-action h2 {
    color: #fff;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.action-button {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: #2d2d2d;
    color: #fff;
    padding: 70px 30px 30px;
}

.footer-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-block h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ff6b35;
    font-weight: 700;
}

.footer-block p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 12px;
}

.footer-block ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 25px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }

    .hero-container h1 {
        font-size: 2.5rem;
    }

    .hero-lead {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .intro-columns {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
