:root {
    --primary-orange: #ff6b35;
    --secondary-green: #00b894;
    --dark-navy: #1a1a2e;
    --light-cream: #fef5e7;
    --accent-yellow: #ffd93d;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --white: #ffffff;
    --soft-gray: #f8f9fa;
    --border-light: #dfe6e9;
    --success-green: #00cec9;
    --warning-orange: #fdcb6e;
    --danger-red: #d63031;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-large: 0 8px 24px rgba(0, 0, 0, 0.16);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-section {
    padding: 96px 0;
}

.heading-primary {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark-navy);
    letter-spacing: -0.02em;
}

.heading-secondary {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.heading-tertiary {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.text-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.text-body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-orange), var(--warning-orange));
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.button-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #ffffff;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.button-outline:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--secondary-green);
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.button-secondary:hover {
    background: #009b7d;
    transform: translateY(-2px);
}

.site-header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.03em;
}

.brand-logo i {
    font-size: 2.25rem;
    color: var(--secondary-green);
}

.main-menu {
    display: flex;
    gap: 42px;
    align-items: center;
}

.menu-item {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
    font-size: 1.05rem;
}

.menu-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.menu-item:hover::before,
.menu-item.current::before {
    width: 100%;
}

.menu-item:hover {
    color: var(--primary-orange);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hamburger-menu.opened span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger-menu.opened span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.opened span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd93d 100%);
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,165.3C96,171,192,181,288,181.3C384,181,480,171,576,149.3C672,128,768,96,864,101.3C960,107,1056,149,1152,149.3C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-banner h1 {
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.hero-banner p {
    font-size: 1.35rem;
    margin-bottom: 48px;
    opacity: 0.96;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 64px;
}

.feature-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 42px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-orange);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary-green), var(--success-green));
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.05rem;
}

.content-block {
    background: var(--soft-gray);
}

.content-layout {
    display: flex;
    gap: 64px;
    align-items: center;
    flex-wrap: wrap;
}

.content-text {
    flex: 1;
    min-width: 320px;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--dark-navy);
    font-weight: 800;
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-benefits {
    margin-top: 36px;
}

.benefit-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.benefit-point i {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin-top: 2px;
}

.content-visual {
    flex: 1;
    min-width: 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.content-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.game-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.game-category-box {
    flex: 1;
    min-width: 240px;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.game-category-box:hover {
    border-color: var(--secondary-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.game-category-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.game-category-box p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.statistics-area {
    background: var(--dark-navy);
    color: var(--white);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-around;
    text-align: center;
}

.stat-block h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-block p {
    font-size: 1.2rem;
    opacity: 0.92;
    font-weight: 500;
}

.call-to-action-area {
    background: linear-gradient(135deg, var(--secondary-green), var(--success-green));
    color: var(--white);
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.call-to-action-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.call-to-action-area h2 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.call-to-action-area p {
    font-size: 1.3rem;
    margin-bottom: 48px;
    opacity: 0.94;
}

.faq-area {
    background: var(--light-cream);
}

.faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.faq-block {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.faq-header {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.faq-header:hover {
    background: var(--soft-gray);
}

.faq-header i {
    transition: var(--transition-smooth);
    color: var(--secondary-green);
    font-size: 1.25rem;
}

.faq-block.opened .faq-header i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-text {
    padding: 0 32px 28px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-block.opened .faq-content {
    max-height: 800px;
}

.contact-area {
    padding: 96px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    background: var(--soft-gray);
    padding: 48px 36px;
    border-radius: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.map-embed {
    flex: 1;
    min-width: 300px;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-medium);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.site-footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 72px 0 24px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.footer-menu li {
    margin-bottom: 14px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.82);
    transition: var(--transition-smooth);
    font-size: 1.05rem;
}

.footer-menu a:hover {
    color: var(--accent-yellow);
    padding-left: 6px;
}

.social-media-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-4px);
}

.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
}

.footer-base p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
}

.footer-legal-links a:hover {
    color: var(--accent-yellow);
}

.breadcrumb-nav {
    background: var(--soft-gray);
    padding: 24px 0;
}

.breadcrumb-trail {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-trail li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.breadcrumb-trail a {
    color: var(--secondary-green);
    font-weight: 500;
}

.breadcrumb-trail a:hover {
    text-decoration: underline;
}

.page-banner {
    background: linear-gradient(135deg, var(--secondary-green), var(--success-green));
    color: var(--white);
    padding: 96px 0 72px;
    text-align: center;
}

.page-banner h1 {
    font-size: 3.25rem;
    margin-bottom: 18px;
    font-weight: 900;
}

.page-banner p {
    font-size: 1.3rem;
    opacity: 0.92;
}

.main-content-area {
    padding: 96px 0;
}

.content-container {
    max-width: 960px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 2.25rem;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--dark-navy);
    font-weight: 800;
}

.content-container h3 {
    font-size: 1.75rem;
    margin-top: 36px;
    margin-bottom: 18px;
    color: var(--text-primary);
    font-weight: 700;
}

.content-container p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.content-container ul, .content-container ol {
    margin-left: 32px;
    margin-bottom: 24px;
}

.content-container li {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 12px;
    list-style: disc;
    font-size: 1.1rem;
}

.error-display {
    min-height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

.error-message h1 {
    font-size: 10rem;
    color: var(--primary-orange);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1;
}

.error-message h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
}

.error-message p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .hamburger-menu {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 48px 24px;
        gap: 28px;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-large);
    }

    .main-menu.opened {
        left: 0;
    }

    .hero-banner h1 {
        font-size: 2.75rem;
    }

    .hero-banner p {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .page-section {
        padding: 72px 0;
    }

    .heading-primary {
        font-size: 2.25rem;
    }

    .feature-grid {
        flex-direction: column;
    }

    .content-layout {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
        gap: 36px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 36px;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .error-message h1 {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 16px;
    }

    .hero-banner h1 {
        font-size: 2.25rem;
    }

    .heading-primary {
        font-size: 2rem;
    }

    .stats-container {
        gap: 28px;
    }

    .stat-block h3 {
        font-size: 2.75rem;
    }
}
