@font-face {
    font-family: 'Alumni Sans Inline One';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.gstatic.com/s/alumnisansinlineone/v3/RrQQboN_4yJ0JmiMUW74FLm-FeAQdopOzRhFUhqM.woff2') format('woff2');
}

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

body {
    font-family: 'Roboto Condensed', sans-serif;
    /*background: linear-gradient(180deg, #1a1a1a 0%, #2d4a2b 50%, #6b8e23 100%);*/
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

.logo-icon::before,
.logo-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.logo-icon::before {
    width: 8px;
    height: 8px;
    top: 5px;
    left: 11px;
}

.logo-icon::after {
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    border: 2px solid #fff;
    background: transparent;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background-image: url(/wp-content/themes/archive/images/bg1.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto; /* 👈 стискає по ширині, зберігаючи пропорції */
    position: relative;
}

.hero-content p {
    margin-top: 90px;
}

.hero-content {
    /*max-width: 900px;*/

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

}

.hero h1 {
    /*font-family: 'Alumni Sans Inline One', cursive;*/
    /*font-size: 90px;*/
    /*line-height: 1;*/
    /*margin-bottom: 30px;*/
    /*text-transform: uppercase;*/
    /*font-weight: 400;*/


    /*color: #FFF;*/
    /*font-family: "Alumni Sans Inline One";*/
    /*font-size: 100px;*/
    /*font-style: italic;*/
    /*font-weight: 700;*/
    /*line-height: 110px; !* 68.75% *!*/
    /*letter-spacing: -3.2px;*/
    /*text-transform: uppercase;*/
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    /*margin-bottom: 40px;*/
    color: #1a1a1a;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;

    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform 0.3s;
    padding: 24px 80px;
    /*max-width: 200px;*/
    height: 40px;

}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button::after {
    content: '↗';
    font-size: 18px;
}

.hero-decoration {
    position: absolute;
    right: 100px;
    top: 100px;
    width: 120px;
    height: 120px;
    display: flex;
}

/*.star {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.star::before,*/
/*.star::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    background: #fff;*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*}*/

/*.star::before {*/
/*    width: 8px;*/
/*    height: 100%;*/
/*}*/

/*.star::after {*/
/*    width: 100%;*/
/*    height: 8px;*/
/*}*/

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
}

.about h2 {


    color: #121212;
    font-family: "Alumni Sans Inline One";
    font-size: 170px;
    font-style: italic;
    font-weight: 400;
    line-height: 80px; /* 47.059% */
    letter-spacing: -3.4px;
    text-transform: uppercase;
}

.about h3 {


    margin-bottom: 40px;


    margin-top: 20px;
    color: #121212;
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-style: normal;
    font-weight: 300;
    line-height: 42px; /* 131.25% */
    letter-spacing: -0.32px;
    text-transform: uppercase;
}

.about-content {
    max-width: 600px;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
    color: black;
}

.about-image {
    position: absolute;
    right: 0px;
    bottom: 0;
    /*width: 400px;*/
    /*height: 400px;*/
    /*background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(0, 255, 0, 0.3) 50%, rgba(255, 255, 0, 0.3) 100%);*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image::before {
    /*content: '👾';*/
    /*font-size: 200px;*/
}

/* Services & Industries Section */
.services-industries {
    padding: 80px 0;
    /*background: #f5f5f5;*/
    color: #000;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.section-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #999;
    text-transform: uppercase;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item:hover .arrow {
    transform: translate(5px, -5px);
}

.item-number {
    font-size: 14px;
    color: #999;
    font-weight: 300;
    min-width: 30px;
}

.service-item h4 {

    font-weight: 400;
    text-transform: uppercase;
    flex: 1;


    color: #121212;
    font-family: "Alumni Sans Inline One";
    font-size: 50px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px; /* 72% */
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.arrow {
    font-size: 24px;
    transition: transform 0.3s;
    color: #000;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    /*background: linear-gradient(180deg, #4a6b3a 0%, #2d4a2b 100%);*/
    color: #fff;
    position: relative;
    padding-top: 0;
}

.stats-header {
    display: flex;
    flex-direction: column;

    margin-bottom: 60px;
}

.stats-title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 100px;
}

.stats-title h2, .stats-header h2 {
    color: #FFF;
    font-family: "Alumni Sans Inline One";
    font-size: 180px;
    font-style: italic;
    font-weight: 400;
    line-height: 96px; /* 53.333% */
    letter-spacing: -3.6px;
    text-transform: uppercase;
}

.tagline {
    font-size: 16px;
    font-weight: 300;
    margin-top: 10px;
}

.stats-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 200px;
    text-align: right;

}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    /*grid-template-columns: repeat(4, 1fr);*/
    gap: 40px;
    /*margin-bottom: 40px;*/
}

.stat-item {
    width: 200px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    min-height: 60px;
}

.stat-number {
    font-family: 'Alumni Sans Inline One', cursive;
    font-size: 60px;
    font-weight: 400;
    margin: 20px 0 10px;
}

.stat-sublabel {
    font-size: 12px;
    font-weight: 300;
    margin-top: 10px;
}

.play-games-link {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-weight: 300;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;

}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #1a1a1a !important;
    color: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    padding-bottom: 35px;
    border-bottom: 1px solid #363535;
}

.testimonials-header h2 {
    color: #FFF;
    font-family: "Alumni Sans Inline One";
    font-size: 180px;
    font-style: italic;
    font-weight: 400;
    line-height: 120px; /* 66.667% */
    letter-spacing: -3.6px;
    text-transform: uppercase;

}

.testimonial-arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    /*border-radius: 50%;*/
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn:hover {
    /*background: #fff;*/
    color: #000;
}

.testimonial-card {
    /*max-width: 800px;*/
    position: relative;
}

.quote-icon {
    color: #FFF;
    font-family: Panchang;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.testimonial-text {
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    /*line-height: 1.8;*/
    margin-bottom: 40px;
    position: relative;
    max-width: 600px;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #FFF;
    font-family: "Alumni Sans Inline One";
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.author-info p {
    color: #FFF;

    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
    color: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-btn {
    padding: 10px 25px;
    border: 1px solid #000;
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #000;
    color: #fff;
}

.contact-info h3 {

    margin-bottom: 20px;
    text-transform: uppercase;


    color: #121212;
    font-family: "Alumni Sans Inline One";
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px; /* 60% */
    letter-spacing: -0.6px;
    text-transform: uppercase;
}

.contact-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {

    color: #121212;

    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.34px;
}

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;

}

.decorative-image {
    /*width: 400px;*/
    /*height: 400px;*/


    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*position: relative;*/
    /*overflow: hidden;*/
}

/*.decorative-image::before {*/
/*    content: '🎮';*/
/*    font-size: 200px;*/
/*    position: absolute;*/
/*    opacity: 0.3;*/
/*}*/

.compass-icon {
    /*width: 120px;*/
    /*height: 120px;*/
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/*.compass-icon svg {*/
/*    width: 100px;*/
/*    height: 100px;*/
/*}*/

/* Footer */
.footer {
    padding: 30px 0;
    /*background: #1a1a1a;*/
    color: #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-content p {
        /*margin-top: 50px;*/
    }

    .burger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 80px 30px;
        gap: 30px;
        transition: right 0.3s;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-decoration {
        right: 20px;
        top: 50px;
        width: 80px;
        height: 80px;
    }

    .about h2 {
        font-size: 45px;
    }

    .about h3 {
        font-size: 16px;
    }

    .about p {
        font-size: 14px;
    }

    .about-image {
        position: relative;
        right: 0;
        margin: 40px auto 0;
        width: 250px;
        height: 250px;
    }

    .about-image::before {
        font-size: 120px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-item h4 {
        font-size: 20px;
    }

    .service-item {
        padding: 20px 0;
    }

    .stats-header {
        flex-direction: column;
        gap: 30px;
    }

    .stats-subtitle {
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-title h2 {
        font-size: 45px;
    }

    .stat-number {
        font-size: 45px;
    }

    .testimonials-header {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-header h2 {
        font-size: 45px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .decorative-image {
        width: 100%;
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 12px;
    }

    .about h2 {
        font-size: 35px;
    }

    .logo {
        font-size: 20px;
    }

    nav {
        width: 80%;
    }

    .service-item h4 {
        font-size: 18px;
    }

    .item-number {
        font-size: 12px;
    }

    .arrow {
        font-size: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-title h2 {
        font-size: 35px;
    }

    .stat-number {
        font-size: 40px;
    }

    .testimonials-header h2 {
        font-size: 35px;
    }

    .quote-icon {
        font-size: 80px;
    }

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        text-align: center;
    }
}

.fl, .fl1 {
    display: flex;
}

.fl1 {
    gap: 150px;
}

.hero-content {
    margin-top: 50px
}

h1 {
    color: #FFF;
    font-family: "Alumni Sans Inline One" !important;
    font-size: 160px;
    font-style: italic;
    font-weight: 400;
    line-height: 110px; /* 68.75% */
    letter-spacing: -3.2px;
    text-transform: uppercase;
}

.bg {
    width: 100%;
    height: 700px;

    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    position: relative;
}

.stats-grid {
    width: 80%;
}

.desc {
    display: block;
}

.mob {
    display: none;
}

.contact-label {
    font-size: 17px;
    font-weight: 300;
    text-transform: none;

}

@media (max-width: 768px) {
    .desc {
        display: none;
    }

    .mob {
        display: block;
    }

    h1 {

        letter-spacing: 1px;
        font-size: 45px !important;
        line-height: 37px;
    }

    .star svg {
        width: 60px;
    }

    .hero-content {
        /* max-width: 900px; */
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: column;
        margin-top: 5px !important;
    }

    .hero-content p {
        margin-top: 0;
    }

    .hero {
        padding: 10px 0 20px;

    }

    .about {
        padding: 20px 0;
        position: relative;
    }

    .about h2 {

        letter-spacing: -0.4px;

    }

    .about h3 {
        margin-bottom: 10px;
        margin-top: 0px;
        color: #121212;;
    }

    .bg {
        width: 100%;
        height: 200px;

        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% auto;
        position: relative;
    }

    .stats-title h2, .stats-header h2 {

        font-size: 60px;

        letter-spacing: 1.4px;

    }

    .stats-title {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 100px;
        flex-direction: column;
    }

    .fl {
        justify-content: space-around;
        flex-direction: column-reverse;
    }

    .stats-grid {
        width: 100%;
    }

    .stats-section {

        padding-bottom: 0px;
    }

    .testimonials-header h2 {

        line-height: 40px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
    }

    .testimonials-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;

    }

    .testimonials-header {

        margin-bottom: 36px;
        padding-bottom: 35px;

    }

    .testimonial-text {

        margin-bottom: 11px;

    }

    .fl1 {
        gap: 20px;
    }

    .author-info h4 {


        font-size: 35px;

    }

    .contact-value {
        color: #121212;

        font-size: 24px !important;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.34px;
    }

    .compass-icon img {
        height: 368px;
        object-fit: cover;
    }

    .stats-header h2 {

        line-height: 56px;
        letter-spacing: 2.4px;

    }

    .stats-title {
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
}

/* Games Section */
.games-section {
    /*padding: 100px 0;*/
    /*background: linear-gradient(180deg, #1a1a1a 0%, #2d3a25 50%, #5a7a45 100%);*/
    /*position: relative;*/
    /*overflow: hidden;*/
}

.games-container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 60px 80px;
    /*min-height: 600px;*/
    align-items: center;
    justify-items: center;
}

/* Grid Lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Game Circles */
.game-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.game-circle::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a4c639 0%, #7d9c2e 50%, #5a7a45 100%);
    z-index: -1;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.game-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(164, 198, 57, 0.4);
}

.game-circle:hover::before {
    opacity: 1;
}

.game-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2d3a25;
    background: #000;
    position: relative;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.game-circle:hover .game-icon img {
    transform: scale(1.1);
}

/* Specific Game Borders */
.game-circle-1::before {
    background: linear-gradient(135deg, #ff6b35 0%, #ffd93d 50%, #6bcf7f 100%);
}

.game-circle-2::before {
    background: linear-gradient(135deg, #a4c639 0%, #7d9c2e 100%);
}

.game-circle-3::before {
    background: linear-gradient(135deg, #ff8c42 0%, #ffd93d 50%, #ff6b35 100%);
}

.game-circle-4::before {
    background: linear-gradient(135deg, #ff4757 0%, #ff6348 50%, #ffa502 100%);
}

.game-circle-5::before {
    background: linear-gradient(135deg, #4bcffa 0%, #7d9c2e 50%, #a4c639 100%);
}

.game-circle-6::before {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 50%, #ffa502 100%);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.game-circle-1 {
    animation: float 6s ease-in-out infinite;
}

.game-circle-2 {
    animation: float 7s ease-in-out infinite 0.5s;
}

.game-circle-3 {
    animation: float 6.5s ease-in-out infinite 1s;
}

.game-circle-4 {
    animation: float 7.5s ease-in-out infinite 1.5s;
}

.game-circle-5 {
    animation: float 6.8s ease-in-out infinite 2s;
}

.game-circle-6 {
    animation: float 7.2s ease-in-out infinite 2.5s;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .games-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 50px 60px;
        padding: 0 40px;
    }

    .game-circle {
        width: 240px;
        height: 240px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .games-section {
        padding: 80px 0;
        width: 100%;
    }

    .games-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        padding: 0 30px;
        width: 100%;
    }


    .game-circle {
        width: 100% !important;
        /*height: 210px!important;*/
    }

    .game-circle::before {
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
    }

    .game-icon {
        border: 3px solid #2d3a25;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .games-section {
        padding: 60px 0;
    }

    .games-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .game-circle {
        /*width: 220px;*/
        /*height: 220px;*/
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .games-container {
        max-width: 1400px;
        gap: 80px 100px;
    }

    .game-circle {
        width: 320px;
        height: 320px;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: #fafafa;
    color: #000;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.benefits-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
    color: #999;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    padding: 45px 0;
    border-top: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.benefit-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item:hover .benefit-arrow {
    transform: translate(5px, -5px);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.benefit-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #999;
    min-width: 35px;
}

.benefit-title {
    font-family: 'Alumni Sans Inline One', cursive;
    font-size: 38px;
    font-weight: 400;
    margin: 0;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.benefit-arrow {
    font-size: 28px;
    color: #000;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.benefit-description {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    padding-left: 60px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.3px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .benefits-container {
        padding: 0 40px;
    }

    .benefit-title {
        font-size: 34px;
    }

    .benefit-description {
        font-size: 14px;
        padding-left: 60px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }

    .benefits-container {
        padding: 0 30px;
    }

    .benefits-label {
        margin-bottom: 40px;
    }

    .benefit-item {
        padding: 35px 0;
    }

    .benefit-header {
        gap: 20px;
        margin-bottom: 15px;
    }

    .benefit-number {
        font-size: 14px;
        min-width: 30px;
    }

    .benefit-title {
        font-size: 28px;
    }

    .benefit-arrow {
        font-size: 24px;
    }

    .benefit-description {
        font-size: 14px;
        padding-left: 50px;
    }
}

/* Small Mobile */
@media (max-width: 640px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-container {
        padding: 0 25px;
    }

    .benefit-item {
        padding: 30px 0;
    }

    .benefit-header {
        flex-wrap: wrap;
        gap: 15px;
    }

    .benefit-number {
        font-size: 13px;
        min-width: 25px;
    }

    .benefit-title {
        font-size: 24px;
        flex: 1 1 calc(100% - 100px);
    }

    .benefit-arrow {
        font-size: 22px;
        margin-left: 0;
    }

    .benefit-description {
        font-size: 13px;
        padding-left: 0;
        line-height: 1.6;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .benefit-title {
        font-size: 22px;
        flex: 1 1 100%;
    }

    .benefit-header {
        position: relative;
    }

    .benefit-arrow {
        position: absolute;
        right: 0;
        top: 0;
    }

    .benefit-description {
        font-size: 13px;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .benefits-container {
        max-width: 1400px;
    }

    .benefit-title {
        font-size: 42px;
    }

    .benefit-description {
        font-size: 16px;
        padding-left: 70px;
    }

    .benefit-item {
        padding: 50px 0;
    }
}

.fl2 {
    display: flex;

}

@media (max-width: 769px) {
    .fl2 {
        display: flex;
        flex-direction: column;
    }

}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 920px;
    width: calc(100% - 40px);
    background: #2a2a2a;
    color: #fff;
    padding: 50px 60px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-popup.active {
    bottom: 0;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cookie-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cookie-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    color: #e0e0e0;
    letter-spacing: 0.2px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.cookie-btn {
    font-family: 'Roboto Condensed', sans-serif;
    width: 100%;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.cookie-btn-accept {
    background: #7d9c2e;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #6b8728;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(125, 156, 46, 0.4);
}

.cookie-btn-refuse {
    background: #fff;
    color: #2a2a2a;
}

.cookie-btn-refuse:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .cookie-popup {
        padding: 45px 50px;
    }

    .cookie-title {
        font-size: 42px;
    }

    .cookie-text {
        font-size: 15px;
    }

    .cookie-btn {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-popup {
        max-width: 100%;
        width: 100%;
        padding: 40px 35px;
        border-radius: 12px 12px 0 0;
    }

    .cookie-title {
        font-size: 36px;
    }

    .cookie-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .cookie-btn {
        padding: 16px 30px;
        font-size: 15px;
    }

    .star img {
        margin-top: 20px;
    }
}

/* Small Mobile */
@media (max-width: 640px) {
    .cookie-popup {
        padding: 35px 25px;
    }

    .cookie-content {
        gap: 20px;
    }

    .cookie-title {
        font-size: 32px;
    }

    .cookie-text {
        font-size: 14px;
    }

    .cookie-buttons {
        gap: 12px;
        margin-top: 5px;
    }

    .cookie-btn {
        padding: 15px 25px;
        font-size: 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .cookie-popup {
        padding: 30px 20px;
    }

    .cookie-title {
        font-size: 28px;
    }

    .cookie-text {
        font-size: 13px;
    }

    .cookie-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Prevent body scroll when popup is active */
body.cookie-active {
    overflow: hidden;
}
@media (max-width: 768px) {


    .game-circle {
        width: 100%;
        height: 100%;
    }
}
