:root {
    --primary-shade: #4a7c59;
    --accent-tone: #6b8e23;
    --surface-bright: #ffffff;
    --surface-dim: #f8f9fa;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --border-subtle: #e2e8f0;
    --backdrop-overlay: rgba(45, 55, 72, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 16px;
    background: var(--surface-bright);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 21px;
}

.container-fluid {
    width: 100%;
    padding: 0 21px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.col-lg-6,
.col-md-6,
.col-sm-6,
.col-12 {
    padding: 0 13px;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 13px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 13px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 0 13px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 13px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 13px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 13px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--text-primary);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 23px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-shade);
}

.home_banner_area {
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-shade) 0%, var(--accent-tone) 100%);
    position: relative;
    overflow: hidden;
}

.home_banner_area::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.banner_inner {
    width: 100%;
    position: relative;
    z-index: 2;
}

.home_left_img {
    padding-top: 134px;
    padding-bottom: 134px;

}

.home_left_img img {
    max-width: 100%;
}

.col-lg-6 {
    vertical-align: middle;
    align-self: center;
}

.banner_content {
    text-align: left;
    color: var(--surface-bright);
    margin-left: 47px;
}

.banner_content h1 {
    margin-top: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 23px;
}

.banner_content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 34px;
    line-height: 1.6;
}

.banner_content .watch_video {
    margin: 0 27px;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--surface-bright);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary_btn {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 51%, #15803d 100%);
    background-size: 200% auto;
    padding: 0 31px;
    color: var(--surface-bright);
    letter-spacing: 0.5px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 48px;
    border-radius: 6px;
    outline: none;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    text-decoration: none;
    border: none;
}

.primary_btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.video-play-button {
    position: relative;
    box-sizing: content-box;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: auto;
    height: auto;
    border-radius: 50px;
    padding: 14px 21px;
    color: var(--surface-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-button span {
    display: block;
    width: 0;
    height: 0;
    border-left: 12px solid var(--surface-bright);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: flex-start;
}

.text-center {
    text-align: center;
}

.ml-auto {
    margin-left: auto;
}

.img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 420px;
    border-radius: 8px;
}

.ftco-section {
    padding: 89px 0;
    position: relative;
}

.heading-section .subheading {
    font-size: 13px;
    display: block;
    font-weight: 600;
    color: var(--primary-shade);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.heading-section h2 {
    font-size: 39px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.mb-4 {
    margin-bottom: 1.8rem;
}

.mt-4 {
    margin-top: 1.8rem;
}

.pl-md-5 {
    padding-left: 3.4rem;
}

.pt-md-5 {
    padding-top: 3.4rem;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col-md-6 {
    padding-right: 0;
    padding-left: 0;
}

.btn {
    padding: 14px 28px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn:hover,
.btn:active,
.btn:focus {
    outline: none;
    text-decoration: none;
}

.btn.btn-primary {
    background: var(--primary-shade);
    border: 1px solid var(--primary-shade);
    color: var(--surface-bright);
}

.btn.btn-primary:hover {
    background: transparent;
    color: var(--primary-shade);
    transform: translateY(-1px);
}

.upcoming_games_area {
    padding: 97px 0 67px;
}

.new_games_item {
    position: relative;
    display: inline-block;
    margin-bottom: 34px;
    border-radius: 8px;
    overflow: hidden;
}

.new_games_item:hover .upcoming_title {
    background: linear-gradient(135deg, var(--primary-shade) 0%, var(--accent-tone) 100%);
}

.new_games_item:hover .upcoming_title a {
    color: var(--surface-bright);
    transform: translateY(-2px);
}

.new_games_item .upcoming_title {
    position: absolute;
    background: var(--backdrop-overlay);
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.new_games_item .upcoming_title h3 {
    font-size: 19px;
    margin: 0;
    padding: 23px;
    transition: all 0.4s ease;
}

.new_games_item .upcoming_title h3 a {
    color: var(--surface-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.main_title {
    text-align: center;
    margin-bottom: 67px;
}

.main_title h2 {
    font-size: 78px;
    color: var(--primary-shade);
    opacity: 0.12;
    margin: 0;
    line-height: 0.8;
    font-weight: 900;
}

.main_title h1 {
    color: var(--text-primary);
    margin-top: -34px;
    font-size: 42px;
    font-weight: 700;
}

.main_title p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 520px;
    margin: 0 auto;
}

.section_gap {
    padding: 97px 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.stats-counter {
    overflow-x: hidden;
    position: relative;
    padding: 89px 0;
    background: var(--text-primary);
}

.stats-counter .counter-block {
    display: block;
    width: 100%;
}

.stats-counter .counter-content {
    position: relative;
}

.stats-counter .counter-content .stat-number {
    line-height: 1.2;
    font-weight: 900;
    font-size: 43px;
    color: var(--accent-tone);
    display: block;
    margin-bottom: 12px;
}

.stats-counter .counter-content span {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.section {
    padding: 89px 0;
}

.bg-light {
    background-color: var(--surface-dim);
}

.blog-post-entry {
    position: relative;
}

.heading {
    font-size: 47px;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: var(--text-primary);
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.mb-5 {
    margin-bottom: 3.4rem;
}

.post .media-custom {
    background: var(--surface-bright);
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.post .media-custom:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.post .media-custom a {
    color: var(--text-primary);
    text-decoration: none;
}

.post .media-custom a:hover {
    color: var(--primary-shade);
}

.post .media-custom .media-body {
    padding: 21px 27px;
}

.post .media-custom h2 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.media-custom .meta-post {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 12px;
    font-weight: 500;
}

.d-block {
    display: block;
}

.mb-3 {
    margin-bottom: 1.2rem;
}

.mt-0 {
    margin-top: 0;
}

h1, h2, h3, h4, h5 {
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 600;
    line-height: 1.3;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary-shade);
}

a:hover {
    text-decoration: none;
    color: var(--accent-tone);
}

.main-section {
    padding: 47px 0;
}

.section-title-accent {
    color: var(--text-primary);
}

.section-title-accent span {
    display: inline-block;
    border-bottom: 4px solid var(--accent-tone);
    padding-bottom: 3px;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
}

.btn-main {
    color: var(--surface-bright);
    background-color: var(--accent-tone);
    border-color: var(--accent-tone);
}

.btn-main:hover {
    color: var(--surface-bright);
    background-color: var(--primary-shade);
    border-color: var(--primary-shade);
    transform: translateY(-2px);
}

.rounded-0 {
    border-radius: 0;
}

.px-3 {
    padding-left: 1.9rem;
    padding-right: 1.9rem;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.site-footer {
    padding: 89px 0;
    background: #2a2a2a;
}

.site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
    color: var(--surface-bright);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--surface-bright);
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer .footer-heading {
    font-size: 18px;
    color: var(--surface-bright);
    font-weight: 600;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info p {
    margin-bottom: 8px;
}

.pt-5 {
    padding-top: 3.4rem;
}

.mt-5 {
    margin-top: 3.4rem;
}

@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 1002;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--surface-bright);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        z-index: 1001;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 17px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 12px 23px;
        font-size: 19px;
        color: var(--text-primary);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .banner_content {
        margin-left: 0;
        text-align: center;
        padding: 34px 0;
    }

    .banner_content h1 {
        font-size: 34px;
    }

    .home_left_img {
        padding-top: 67px;
        padding-bottom: 67px;
    }

    .col-lg-6,
    .col-lg-5,
    .col-lg-4,
    .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 34px;
    }

    .ftco-section {
        padding: 67px 0;
    }

    .pl-md-5 {
        padding-left: 0;
    }

    .pt-md-5 {
        padding-top: 0;
    }

    .img {
        min-height: 280px;
        margin-bottom: 23px;
    }

    .heading-section h2 {
        font-size: 28px;
    }

    .upcoming_games_area {
        padding: 67px 0 34px;
    }

    .main_title {
        margin-bottom: 47px;
    }

    .main_title h2 {
        font-size: 47px;
    }

    .main_title h1 {
        font-size: 28px;
    }

    .stats-counter {
        padding: 67px 0;
    }

    .stats-counter .stat-wrap {
        margin-bottom: 34px;
    }

    .stats-counter .counter-content .stat-number {
        font-size: 34px;
    }

    .section {
        padding: 67px 0;
    }

    .heading {
        font-size: 32px;
    }

    .lead {
        font-size: 16px;
    }

    .main-section {
        padding: 34px 0;
    }

    .site-footer {
        padding: 67px 0;
    }

    .col-md-6,
    .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 23px;
    }

    .banner_content .d-flex {
        flex-direction: column;
        gap: 17px;
        align-items: center;
    }

    .video-play-button {
        margin: 0;
    }
}

@media screen and (min-width: 891px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
        gap: 32px;
    }
}

@media screen and (max-width: 640px) {
    .banner_content h1 {
        font-size: 28px;
    }

    .banner_content p {
        font-size: 16px;
    }

    .home_left_img {
        padding-top: 47px;
        padding-bottom: 47px;
    }

    .container,
    .container-fluid {
        padding: 0 17px;
    }

    .row {
        margin: 0 -8px;
    }

    .col-lg-6,
    .col-md-6,
    .col-sm-6,
    .col-12 {
        padding: 0 8px;
    }

    .ftco-section {
        padding: 47px 0;
    }

    .upcoming_games_area {
        padding: 47px 0 23px;
    }

    .stats-counter {
        padding: 47px 0;
    }

    .section {
        padding: 47px 0;
    }

    .site-footer {
        padding: 47px 0;
    }

    .main_title h2 {
        font-size: 34px;
    }

    .main_title h1 {
        font-size: 23px;
    }

    .heading {
        font-size: 27px;
    }
}

.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    max-width: 750px;
    margin: 50px auto;
    background: var(--surface-bright);
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10000;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10001;
}

.modal-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.modal-close:hover {
    background: var(--surface-bright);
    transform: scale(1.1);
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    padding: 30px;
}

.modal-date {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}

.modal-text h2 {
    font-size: 28px;
    margin: 15px 0 20px 0;
    color: var(--text-primary);
    line-height: 1.3;
}

.modal-blog-content {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

.modal-blog-content p {
    margin-bottom: 18px;
}

@media screen and (max-width: 890px) {
    .modal-container {
        margin: 20px;
        max-height: 90vh;
    }

    .modal-image {
        height: 220px;
    }

    .modal-text {
        padding: 20px;
    }

    .modal-text h2 {
        font-size: 22px;
    }
}

@media screen and (max-width: 640px) {
    .modal-container {
        margin: 10px;
    }

    .modal-image {
        height: 180px;
    }

    .modal-text {
        padding: 15px;
    }
}

/* ===== ДОПОЛНИТЕЛЬНАЯ СТИЛИЗАЦИЯ ДЛЯ СВЕЖЕГО И СОВРЕМЕННОГО ВИДА ===== */

/* Улучшенная анимация для hero секции */
.home_banner_area::after {
    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 200 200"><defs><pattern id="vegetables" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="3" fill="rgba(255,255,255,0.05)"/><path d="M20,5 Q25,10 20,15 Q15,10 20,5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="200" height="200" fill="url(%23vegetables)"/></svg>');
    opacity: 0.4;
    animation: vegetablePattern 20s ease-in-out infinite;
}

@keyframes vegetablePattern {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-5px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(5px) translateY(-3px); }
}

/* Плавающие элементы для hero */
.banner_content::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.banner_content::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -25px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* Интерактивные карточки методов */
.new_games_item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new_games_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 2;
}

.new_games_item:hover::before {
    left: 100%;
}

.new_games_item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.3);
}

/* Улучшенные статистики */
.stats-counter {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stats-counter::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 100 100"><defs><pattern id="stats" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="2" height="2" x="5" y="5" fill="rgba(107,142,35,0.1)"/><rect width="1" height="1" x="15" y="15" fill="rgba(107,142,35,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats)"/></svg>');
    animation: statsPattern 15s linear infinite;
}

@keyframes statsPattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.counter-block {
    position: relative;
    z-index: 2;
}

.stat-number {
    background: linear-gradient(45deg, var(--accent-tone), #8bc34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 195, 74, 0.3);
}

/* Улучшенные блог карточки */
.post .media-custom {
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.post .media-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-shade), var(--accent-tone));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.post .media-custom:hover::before {
    transform: scaleX(1);
}

.post .media-custom img {
    transition: all 0.4s ease;
    filter: saturate(0.9);
}

.post .media-custom:hover img {
    filter: saturate(1.1);
    transform: scale(1.05);
}

/* Кнопки с эффектом ripple */
.btn, .primary_btn {
    position: relative;
    overflow: hidden;
}

.btn::before, .primary_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
}

.btn:active::before, .primary_btn:active::before {
    width: 300px;
    height: 300px;
}

/* Интерактивная навигация */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-shade);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Улучшенные заголовки */
.heading {
    position: relative;
    display: inline-block;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-shade), var(--accent-tone));
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Плавная анимация для изображений */
.img, .img-fluid, .img-responsive {
    transition: all 0.4s ease;
    position: relative;
}

.img:hover, .img-fluid:hover, .img-responsive:hover {
    filter: brightness(1.05) contrast(1.1);
}

/* Микро-анимации для контента */
.ftco-animate {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Улучшенный footer */
.site-footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-shade), transparent);
}

/* Интерактивные ссылки в footer */
.site-footer a {
    transition: all 0.3s ease;
    position: relative;
}

.site-footer a:hover {
    color: var(--accent-tone);
    transform: translateX(3px);
}

/* Scroll индикатор */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-shade), var(--accent-tone));
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Улучшенные input поля (если есть) */
input, textarea, select {
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px solid var(--border-subtle);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-shade);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
    outline: none;
}

/* Параллакс эффект для секций */
.ftco-section, .upcoming_games_area {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Улучшенные тени */
.new_games_item,
.post .media-custom,
.modal-container {
    box-shadow:
            0 1px 3px rgba(0, 0, 0, 0.12),
            0 1px 2px rgba(0, 0, 0, 0.24);
}

.new_games_item:hover,
.post .media-custom:hover {
    box-shadow:
            0 14px 28px rgba(0, 0, 0, 0.25),
            0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Загрузочная анимация */
.loading-animation {
    opacity: 0;
    animation: loadIn 0.6s ease-out forwards;
}

@keyframes loadIn {
    to {
        opacity: 1;
    }
}

/* Курсор для интерактивных элементов */
.blog-trigger,
.new_games_item,
.btn,
.primary_btn {
    cursor: pointer;
}

/* Дополнительные hover эффекты */
.banner_content h1 {
    transition: all 0.3s ease;
}

.banner_content h1:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Респонсивные улучшения */
@media screen and (max-width: 890px) {
    .new_games_item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .banner_content::before,
    .banner_content::after {
        display: none;
    }

    .heading::after {
        width: 40px;
    }
}

@media screen and (max-width: 640px) {
    .stats-counter::before {
        animation-duration: 10s;
    }

    .new_games_item {
        margin-bottom: 20px;
    }

    .float {
        animation-duration: 2s;
    }
}

/* Плавные переходы для всех элементов */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Дополнительная интерактивность для изображений */
.home_left_img img {
    transition: all 0.5s ease;
    border-radius: 12px;
}

.home_left_img img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::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 200 200"><defs><pattern id="contact-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(74,124,89,0.05)"/><path d="M15,15 Q20,20 15,25 Q10,20 15,15" fill="rgba(107,142,35,0.03)"/></pattern></defs><rect width="200" height="200" fill="url(%23contact-pattern)"/></svg>');
    animation: patternMove 25s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.contact-form-wrapper {
    background: var(--surface-bright);
    padding: 50px;
    border-radius: 20px;
    box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.1),
            0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--primary-shade), var(--accent-tone));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 2px solid var(--border-subtle);
    background: transparent;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: var(--primary-shade);
}

.form-input:focus + .form-underline,
.form-select:focus + .form-underline,
.form-textarea:focus + .form-underline {
    transform: scaleX(1);
}

.form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-shade), var(--accent-tone));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23718096" d="M1 1l5 5 5-5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px 8px;
    padding-right: 30px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 40px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary-shade) 0%, var(--accent-tone) 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    color: var(--surface-bright);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.info-card {
    background: var(--surface-bright);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-shade), var(--accent-tone));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 15px;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.info-card:hover .info-icon {
    filter: grayscale(0);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-card p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 500;
}

.info-card span {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Form Validation Styles */
.form-input:invalid:not(:focus):not(:placeholder-shown),
.form-select:invalid:not(:focus),
.form-textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: #e53e3e;
}

.form-input:valid:not(:focus):not(:placeholder-shown),
.form-select:valid:not(:focus),
.form-textarea:valid:not(:focus):not(:placeholder-shown) {
    border-bottom-color: var(--accent-tone);
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-cards {
        margin-top: 40px;
    }

    .info-card {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 640px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-submit-btn {
        width: 100%;
        padding: 16px 30px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-icon {
        font-size: 28px;
    }
}

/* Loading Animation for Form */
.form-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.form-submit-btn.loading .btn-text {
    opacity: 0;
}

.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--surface-bright);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== THANK YOU PAGE STYLES ===== */
.thankyou-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--surface-bright) 0%, var(--surface-dim) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 40px;
}

.check-mark {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.check-mark-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-tone);
    border-radius: 50%;
    position: relative;
    animation: checkCircle 0.8s ease-in-out;
}

.check-mark-stem {
    position: absolute;
    width: 3px;
    height: 20px;
    background: var(--accent-tone);
    left: 35px;
    top: 35px;
    transform: rotate(45deg);
    animation: checkStem 0.6s ease-in-out 0.3s forwards;
    transform-origin: bottom;
    opacity: 0;
}

.check-mark-kick {
    position: absolute;
    width: 3px;
    height: 12px;
    background: var(--accent-tone);
    left: 28px;
    top: 42px;
    transform: rotate(-45deg);
    animation: checkKick 0.4s ease-in-out 0.5s forwards;
    transform-origin: bottom;
    opacity: 0;
}

@keyframes checkCircle {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkStem {
    0% { height: 0; opacity: 0; }
    100% { height: 20px; opacity: 1; }
}

@keyframes checkKick {
    0% { height: 0; opacity: 0; }
    100% { height: 12px; opacity: 1; }
}

.thankyou-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thankyou-subtitle {
    font-size: 24px;
    color: var(--accent-tone);
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thankyou-message {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.thankyou-message p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-shade), var(--accent-tone));
    color: var(--surface-bright);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.4);
    color: var(--surface-bright);
}

.btn-secondary-large {
    background: transparent;
    color: var(--primary-shade);
    padding: 18px 35px;
    border: 2px solid var(--primary-shade);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-large:hover {
    background: var(--primary-shade);
    color: var(--surface-bright);
    transform: translateY(-3px);
}

.next-steps {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.next-steps h3 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface-bright);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-shade), var(--accent-tone));
    color: var(--surface-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 890px) {
    .thankyou-title {
        font-size: 36px;
    }

    .thankyou-subtitle {
        font-size: 20px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 640px) {
    .thankyou-section {
        padding: 80px 0;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .thankyou-message p {
        font-size: 16px;
    }

    .btn-primary-large,
    .btn-secondary-large {
        padding: 16px 30px;
        font-size: 14px;
    }
}