@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Liquid Glass Base Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.liquid-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: url(#displacementFilter) blur(2px);
    -webkit-backdrop-filter: url(#displacementFilter) blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.liquid-glass:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 48px rgba(255, 107, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.glass-header {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Main Content */
#main-content {
    position: relative;
    z-index: 1;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-accent {
    color: #FF6B35;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B35;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08), transparent 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    width: 120px;
    height: auto;
    animation: floatLogo 3s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 30%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FF6B35, #FF8F65);
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FF7A4A, #FFA07A);
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: scale(1.05);
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    padding: 25px 35px;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #FF6B35;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FF8F65);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* About */
.about-text-center {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.about-text-center .about-text-card {
    padding: 40px;
    text-align: center;
}

.about-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text-card {
    padding: 40px;
}

.about-card {
    padding: 25px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* About Cards Row */
.about-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.about-cards-row .about-card {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-cards-row .about-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
}

.about-cards-row .icon-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.about-cards-row .about-card:hover .icon-wrap {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.about-cards-row .icon-svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #FF6B35;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-cards-row .about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.about-cards-row .about-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 25px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
}

.game-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.game-card:hover .game-image-wrapper {
    border-color: #FF6B35;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.game-image-circle {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image-circle {
    transform: scale(1.1);
}

.game-info {
    padding: 15px 25px 0;
    width: 100%;
}

.game-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.game-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    justify-content: center;
}

.game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: center;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: #FF6B35;
}

.game-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.game-link:hover {
    transform: translateX(5px);
    color: #FF8F65;
}

/* Reviews - Carousel */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.reviews-carousel-container {
    overflow: hidden;
    margin: 0 50px;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(100% / 3 - 20px);
    min-width: 0;
    padding: 30px;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    box-sizing: border-box;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 107, 53, 0.3);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 5px;
}

.carousel-btn.next {
    right: 5px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #FF6B35;
    width: 30px;
    border-radius: 5px;
}

/* Планшеты */
@media (max-width: 1024px) {
    .reviews-carousel-container {
        margin: 0 40px;
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Телефоны */
@media (max-width: 768px) {
    .reviews-carousel-container {
        margin: 0 30px;
    }

    .reviews-carousel-track {
        gap: 16px;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 20px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .carousel-btn.prev {
        left: 0px;
    }
    .carousel-btn.next {
        right: 0px;
    }
}

/* Очень маленькие телефоны */
@media (max-width: 400px) {
    .reviews-carousel-container {
        margin: 0 20px;
    }

    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: #FF6B35;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.contact-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.06);
    border: 1px solid rgba(255, 107, 53, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrap {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-icon-svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #FF6B35;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 10px 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background: rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: rgba(255, 107, 53, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social-link:hover {
    color: #FF6B35;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Animations */
.fade-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-item:nth-child(1) { transition-delay: 0.1s; }
.fade-item:nth-child(2) { transition-delay: 0.2s; }
.fade-item:nth-child(3) { transition-delay: 0.3s; }
.fade-item:nth-child(4) { transition-delay: 0.4s; }
.fade-item:nth-child(5) { transition-delay: 0.5s; }
.fade-item:nth-child(6) { transition-delay: 0.6s; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    max-width: 550px;
    width: 90%;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalSlideUp 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 10px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #FF6B35;
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 20px;
    text-align: center;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.modal-subtitle {
    color: #FF6B35;
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
}

.modal-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 15px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.modal-body ul li:last-child {
    border-bottom: none;
}

/* ======================================== */
/*            АДАПТИВНАЯ ВЕРСИЯ              */
/* ======================================== */

/* Планшеты */
@media (max-width: 1024px) {
    .about-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }
}

/* Телефоны */
@media (max-width: 768px) {
    /* Навигация */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-logo-img {
        width: 32px;
        height: 32px;
    }
    .logo-text,
    .logo-accent {
        font-size: 18px;
    }
    .header {
        padding: 10px 0;
    }

    /* Hero */
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-logo {
        width: 80px;
    }
    .hero-stats {
        gap: 12px;
        margin-top: 40px;
    }
    .stat-item {
        padding: 12px 16px;
        min-width: 70px;
    }
    .stat-number {
        font-size: 22px;
    }
    .stat-label {
        font-size: 10px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Секции */
    section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .section-title::after {
        width: 40px;
    }
    .container {
        padding: 0 16px;
    }

    /* About - 3 колонки без скролла */
    .about-text-center .about-text-card {
        padding: 25px;
    }
    .about-text-center .about-text-card p {
        font-size: 15px;
    }

    .about-cards-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
    .about-cards-row .about-card {
        padding: 16px 12px;
    }
    .about-cards-row .icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    .about-cards-row .icon-svg {
        width: 18px;
        height: 18px;
    }
    .about-cards-row .about-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .about-cards-row .about-card p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Games - 2 колонки без скролла */
    .games-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 100%;
    }
    .game-card {
        padding: 0 0 16px 0;
    }
    .game-image-wrapper {
        width: 80px;
        height: 80px;
        margin: 12px auto 6px;
    }
    .game-info {
        padding: 8px 12px 0;
    }
    .game-info h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    .game-info p {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .game-meta {
        font-size: 11px;
        gap: 8px;
        margin-bottom: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .game-tags {
        gap: 4px;
        margin-bottom: 10px;
        justify-content: center;
    }
    .tag {
        font-size: 10px;
        padding: 2px 8px;
    }
    .game-link {
        font-size: 12px;
    }

    /* Reviews - карусель */
    .reviews-carousel-container {
        padding: 5px 0;
    }

    .reviews-carousel-track {
        gap: 16px;
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
        padding: 20px;
    }
    .review-card p {
        font-size: 14px;
    }
    .review-author {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    .carousel-btn.prev {
        left: 4px;
    }
    .carousel-btn.next {
        right: 4px;
    }

    .carousel-dots {
        gap: 8px;
        margin-top: 16px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    .carousel-dot.active {
        width: 24px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-item {
        padding: 12px 16px;
    }
    .contact-item strong {
        font-size: 12px;
    }
    .contact-item span {
        font-size: 13px;
    }
    .contact-icon-wrap {
        width: 36px;
        height: 36px;
    }
    .contact-icon-svg {
        width: 16px;
        height: 16px;
    }
    .contact-form {
        padding: 20px;
    }
    .contact-form h3 {
        font-size: 18px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    .social-links {
        gap: 8px;
        justify-content: center;
    }
    .social-link {
        padding: 6px 14px;
        font-size: 12px;
    }
    .contact-form button {
        width: 100%;
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-logo-text {
        font-size: 14px;
    }
    .footer-links a,
    .footer-social-link {
        font-size: 12px;
    }

    /* Modal */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    .modal-header h2 {
        font-size: 22px;
    }
    .modal-body p {
        font-size: 13px;
    }
    .modal-body ul li {
        font-size: 12px;
        padding: 5px 0;
    }
}

/* Очень маленькие телефоны */
@media (max-width: 400px) {
    .hero-title {
        font-size: 28px;
    }
    .stat-item {
        padding: 8px 12px;
        min-width: 55px;
    }
    .stat-number {
        font-size: 18px;
    }
    .stat-label {
        font-size: 9px;
    }
    .about-cards-row {
        gap: 8px;
    }
    .about-cards-row .about-card {
        padding: 12px 8px;
    }
    .about-cards-row .about-card h3 {
        font-size: 12px;
    }
    .about-cards-row .about-card p {
        font-size: 10px;
    }
    .about-cards-row .icon-wrap {
        width: 32px;
        height: 32px;
    }
    .about-cards-row .icon-svg {
        width: 14px;
        height: 14px;
    }
    .games-grid {
        gap: 12px;
    }
    .game-image-wrapper {
        width: 64px;
        height: 64px;
        margin: 8px auto 4px;
    }
    .game-info h3 {
        font-size: 13px;
    }
    .game-info p {
        font-size: 11px;
    }
    .game-meta {
        font-size: 10px;
    }
    .tag {
        font-size: 9px;
        padding: 2px 6px;
    }
    .review-card {
        padding: 16px;
    }
    .review-card p {
        font-size: 13px;
    }
    .contact-form {
        padding: 16px;
    }
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
        font-size: 13px;
        padding: 10px 14px;
    }
}