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


/* Cookie Notice */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(240, 240, 240, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-notice.hidden {
    display: none;
}

.cookie-content {
    text-align: center;
    color: #333;
    max-width: 600px;
    padding: 40px;
}

.cookie-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #333;
    color: white;
}

.cookie-btn.learn-more {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}


body {
    font-family: 'Inter', sans-serif;
    background: #191919;
}

header {
    background: #191919;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    /*width: 50px;*/
    /*height: 50px;*/
    /*background: #D0FB90;*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    gap: 10px;
}


.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #3a3a3a;
    border-radius: 50px;
    padding: 4px;
}

.nav-link {
    padding: 14px 40px;
    color: #191919;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link.active {
    background: #191919;
    color: white;
}

.nav-link:not(.active):hover {
    background: #3a3a3a;
}

.explore-btn {
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.explore-btn:hover {
    background: #ffffff;
    color: #1f1f1f;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    /*border: none;*/
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    padding: 0 5px;
    border: 1px solid white;
    border-radius: 50px;
}

@media (max-width: 968px) {
    header {
        padding: 16px 24px;
    }

    .nav-link {
        padding: 12px 28px;
        font-size: 15px;
    }

    .explore-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .logo-icon {

    }

    .logo-text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    nav {
        position: fixed;
        top: 86px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        padding: 12px;
        gap: 8px;
        display: none;
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .explore-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-icon {

    }

    .logo-icon::before {
        width: 16px;
        height: 16px;
        top: 6px;
        right: 6px;
    }

    .logo-icon::after {
        width: 22px;
        height: 11px;
        bottom: 6px;
        left: 9px;
    }

    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
}

.hero-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.hero-left h1 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;

    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #D0FB90;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.4;
    font-weight: 400;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #b3b3b3;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    max-height: 300px;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 50px 40px;
    }

    .hero-left h1 {
        font-size: 64px;
    }

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

    .hero-description {
        font-size: 17px;
    }
}

@media (max-width: 968px) {
    .hero-section {
        padding: 40px 24px;
    }

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

    .hero-left h1 {
        font-size: 56px;
    }

    .stats {
        gap: 32px;
    }

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

    .stat-label {
        font-size: 15px;
    }

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 32px 20px;
    }

    .hero-left h1 {
        font-size: 44px;
    }

    .stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-image {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 0;
    }

    .hero-section {
        padding: 24px 16px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

    .stat-label {
        font-size: 14px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 15px;
    }

    .hero-image {
        border-radius: 16px;
    }
}


.welcome-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-left h2 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.welcome-left p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #b3b3b3;
    font-weight: 400;
    max-width: 600px;
}

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

}

.character-image {
    /*          width: 401px;*/
    /*height: 320px;*/
    /*aspect-ratio: 401/320;*/
    /*            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));*/
}

@media (max-width: 1200px) {
    .welcome-section {
        padding: 70px 40px;
    }

    .welcome-content {
        gap: 60px;
    }

    .welcome-left h2 {
        font-size: 64px;
    }

    .welcome-left p {
        font-size: 17px;
    }
}

@media (max-width: 968px) {
    .welcome-section {
        padding: 60px 24px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .welcome-left h2 {
        font-size: 56px;
    }

    .welcome-left p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .welcome-right {
        order: -1;
    }

    .character-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 20px;
    }

    .welcome-left h2 {
        font-size: 44px;
        margin-bottom: 24px;
    }

    .welcome-left p {
        font-size: 15px;
    }

    .character-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 40px 16px;
    }

    .welcome-content {
        gap: 40px;
    }

    .welcome-left h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .welcome-left p {
        font-size: 14px;
        line-height: 1.6;
    }

    .character-image {
        max-width: 280px;
    }
}

.why-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 64px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    margin-bottom: 50px;
}

.feature-item h3 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #D0FB90;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.feature-item p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #b3b3b3;
    font-weight: 400;
}

.closing-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #888888;
    text-align: left;
    margin-bottom: 80px;
}

.characters-container {
    position: relative;
    height: 500px;
    margin-top: 80px;
}

.character {
    position: absolute;
    transition: transform 0.3s ease;

    width: 100%;
    height: auto;
    object-fit: cover;
}

.character:hover {
    transform: scale(1.05);
}

.character-1 {
    left: 15%;
    bottom: 20px;
    width: 200px;
    height: auto;
}

.character-2 {
    right: 30%;
    top: 50px;
    width: 140px;
    height: auto;
}

.character-3 {
    right: 15%;
    bottom: 50px;
    width: 220px;
    height: auto;
}

.baseball {
    position: absolute;
    right: 45%;
    top: 45%;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1200px) {
    .why-section {
        padding: 70px 40px;
    }

    .section-title {
        font-size: 56px;
        margin-bottom: 50px;
    }

    .features-grid {
        gap: 40px 60px;
    }

    .feature-item h3 {
        font-size: 28px;
    }

    .characters-container {
        height: 450px;
    }
}

@media (max-width: 968px) {
    .why-section {
        padding: 60px 24px;
    }

    .section-title {
        font-size: 48px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .feature-item h3 {
        font-size: 26px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .closing-text {
        font-size: 15px;
        margin-bottom: 60px;
    }

    .characters-container {
        height: 400px;
    }

    .character-1 {
        left: 10%;
        width: 160px;
    }

    .character-2 {
        right: 25%;
        width: 120px;
    }

    .character-3 {
        right: 10%;
        width: 180px;
    }

    .baseball {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .feature-item h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .feature-item p {
        font-size: 14px;
    }

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

    .characters-container {
        height: 350px;
        margin-top: 60px;
    }

    .character-1 {
        left: 5%;
        width: 140px;
    }

    .character-2 {
        right: 20%;
        width: 100px;
    }

    .character-3 {
        right: 5%;
        width: 150px;
    }

    .baseball {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .feature-item h3 {
        font-size: 22px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .closing-text {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .characters-container {
        height: 300px;
        margin-top: 50px;
    }

    .character-1 {
        left: 5%;
        bottom: 10px;
        width: 100px;
    }

    .character-2 {
        right: 15%;
        top: 30px;
        width: 80px;
    }

    .character-3 {
        right: 5%;
        bottom: 30px;
        width: 110px;
    }

    .baseball {
        width: 25px;
        height: 25px;
        right: 40%;
    }
}

.faq-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    /*background: #252525;*/
    border-radius: 16px;
    border: 2px solid #FFF;

    padding: 24px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4a4a4a;
    transform: translateY(-2px);
}

.faq-question {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #D0FB90;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    font-weight: 400;
}

@media (max-width: 968px) {
    .faq-section {
        padding: 60px 24px;
        max-width: 100%;
    }

    .section-title {
        font-size: 44px;
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 24px 28px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .faq-item {
        padding: 22px 24px;
    }

    .faq-question {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-list {
        gap: 16px;
    }

    .faq-item {
        padding: 20px;
        border-radius: 12px;
    }

    .faq-question {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.6;
    }
}

.footer-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    background: #2a2a2a;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #404040;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: capitalize;
}

.footer-address {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 400;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #D0FB90;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #999999;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #D0FB90;
}

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #D0FB90;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

@media (max-width: 1200px) {
    .footer-container {
        padding: 45px 50px;
    }

    .footer-top {
        gap: 35px;
    }

    .logo-text {
        font-size: 28px;
    }

    .footer-address,
    .contact-item {
        font-size: 15px;
    }
}

@media (max-width: 968px) {
    .footer-container {
        padding: 40px 40px;
        border-radius: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
    }

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

@media (max-width: 768px) {
    .footer-container {
        padding: 35px 30px;
    }

    .logo-icon {

    }

    .logo-icon::before {
        width: 18px;
        height: 18px;
        top: 7px;
        right: 7px;
    }

    .logo-icon::after {
        width: 25px;
        height: 12px;
        bottom: 7px;
        left: 10px;
    }

    .logo-text {
        font-size: 26px;
    }

    .footer-address,
    .contact-item,
    .footer-copyright,
    .footer-link {
        font-size: 14px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .footer-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .footer-top {
        gap: 25px;
        padding-bottom: 30px;
        margin-bottom: 25px;
    }

    .logo-icon {

    }

    .logo-icon::before {
        width: 16px;
        height: 16px;
        top: 6px;
        right: 6px;
    }

    .logo-icon::after {
        width: 22px;
        height: 11px;
        bottom: 6px;
        left: 9px;
    }

    .logo-text {
        font-size: 24px;
    }

    .footer-address,
    .contact-item,
    .footer-copyright,
    .footer-link {
        font-size: 13px;
    }

    .footer-bottom {
        gap: 20px;
    }

    .footer-links {
        gap: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

.games-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.game-card {
    background: #0a0a0a;
    border: 3px solid #2a2a2a;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.game-card:hover {
    border-color: #D0FB90;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 255, 53, 0.2);
}

.game-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #2a2a2a;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-title {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: #D0FB90!important;
    font-weight: 600;
    padding: 0 4px;
}

@media (max-width: 968px) {
    .games-section {
        padding: 50px 30px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 35px;
    }

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

    .game-title {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .games-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .games-grid {
        gap: 16px;
    }

    .game-card {
        padding: 10px;
    }

    .game-image {
        margin-bottom: 10px;
    }

    .game-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .games-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .game-card {
        padding: 8px;
        border-width: 2px;
    }

    .game-image {
        margin-bottom: 8px;
        border-radius: 10px;
    }

    .game-title {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .game-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

.game-details-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.game-title {
    font-family: 'Anton', sans-serif;
    /*font-size: 56px;*/
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.game-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #b3b3b3;
    margin-bottom: 25px;
    max-width: 800px;
}

.game-features {
    list-style: none;
    margin-bottom: 40px;
    max-width: 800px;
}

.game-features li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #b3b3b3;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.game-features li::before {
    content: '•';
    color: #D0FB90;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.game-content {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    margin-top: 50px;
}

.game-card-wrapper {
    flex-shrink: 0;
}

.game-card {
    background: none;


    padding: 12px;
    max-width: 356px;
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 2px solid #FFF;
}

a {
    text-decoration: none;
}

.game-card:hover {
    border-color: #D0FB90;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 255, 53, 0.2);
}

.game-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #2a2a2a;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card-title {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: #D0FB90;
    text-transform: uppercase;
    padding: 0 4px;
    letter-spacing: 0.3px;
}

.game-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-play {
    padding: 16px 48px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

@media (max-width: 968px) {
    .game-details-section {
        padding: 50px 30px;
    }

    .game-title {
        /*font-size: 48px;*/
        margin-bottom: 25px;
    }

    .game-description {
        font-size: 15px;
    }

    .game-features li {
        font-size: 14px;
    }

    .game-content {
        gap: 30px;
    }

    .game-card {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .game-details-section {
        padding: 40px 20px;
    }

    .game-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .game-description {
        font-size: 14px;
    }

    .game-features li {
        font-size: 13px;
    }

    .game-content {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        margin-top: 40px;
    }

    .game-card {
        width: 100%;
        max-width: 280px;
    }

    .game-actions {
        width: 100%;
        max-width: 280px;
    }

    .btn-play {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .game-details-section {
        padding: 30px 15px;
    }

    .game-title {
        font-size:20px;
        margin-bottom: 18px;
    }

    .game-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .game-features {
        margin-bottom: 30px;
    }

    .game-features li {
        font-size: 13px;
        padding-left: 18px;
    }

    .game-content {
        gap: 30px;
        margin-top: 35px;
    }

    .game-card {
        max-width: 100%;
        padding: 10px;
    }

    .game-card-title {
        font-size: 16px;
    }

    .game-actions {
        max-width: 100%;
    }

    .btn-play {
        padding: 14px 40px;
        font-size: 16px;
    }
}

.policy-title {
    color: #FFF;
    font-family: Inter;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%; /* 57.6px */
}

.policy-content {
    color: #FFF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
    margin: 30px 0;
}
.container-policy{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}