/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0f1b2e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(26, 144, 218, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(94, 189, 249, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

/* Header */
.header {
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.header__logo {
    font-size: 27px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.5);
    letter-spacing: -0.5px;
}

.header__logo:hover {
    color: #5ebdf9;
    text-shadow: 0 0 30px rgba(94, 189, 249, 0.8);
    transform: translateY(-2px);
}

.header__nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5ebdf9, #1a90da);
    transition: width 0.3s;
    border-radius: 2px;
}

.header__link:hover {
    color: #5ebdf9;
    background: rgba(94, 189, 249, 0.1);
}

.header__link:hover::after {
    width: 80%;
}


/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 0;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 144, 218, 0.1) 0%, rgba(10, 22, 40, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 80px 0;
    position: relative;
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    margin-bottom: 60px;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(26, 144, 218, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(94, 189, 249, 0.3);
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.computer-animation {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.computer-animation svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(94, 189, 249, 0.3));
}

/* Анимации для компьютера */
@keyframes dataFlow {
    0% {
        opacity: 0.2;
        stroke-dashoffset: 0;
    }
    50% {
        opacity: 1;
        stroke-dashoffset: -20;
    }
    100% {
        opacity: 0.2;
        stroke-dashoffset: -40;
    }
}

@keyframes oldDataFade {
    0% {
        opacity: 0.4;
        transform: translateX(0);
    }
    50% {
        opacity: 0.1;
        transform: translateX(-10px);
    }
    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

@keyframes newDataAppear {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    100% {
        opacity: 0.9;
        transform: translateX(-5px) scale(1);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.5;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-15px) translateX(5px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-35px) translateX(10px) scale(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.15);
    }
}

@keyframes screenFlicker {
    0%, 100% {
        opacity: 0.85;
    }
    25% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.95;
    }
}

@keyframes progressFill {
    0% {
        width: 0;
    }
    100% {
        width: 180px;
    }
}

.data-line {
    animation: dataFlow 2.5s ease-in-out infinite;
    stroke-dasharray: 10, 5;
}

.old-value {
    animation: oldDataFade 3s ease-in-out infinite;
}

.new-value {
    animation: newDataAppear 3s ease-in-out infinite;
}

.arrow {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.particle {
    animation: particleFloat 2.5s ease-in-out infinite;
}

.glow {
    animation: glowPulse 4s ease-in-out infinite;
}

.screen {
    animation: screenFlicker 5s ease-in-out infinite;
}

.progress-bar {
    animation: progressFill 4s ease-in-out infinite;
}

.monitor {
    transition: all 0.3s;
}

.computer-animation:hover .monitor {
    stroke: #5ebdf9;
    stroke-width: 3;
    filter: drop-shadow(0 0 25px rgba(94, 189, 249, 0.7));
}

.computer-animation:hover .glow {
    opacity: 0.3;
}

/* Quick Navigation */
.quick-nav {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 45, 74, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(94, 189, 249, 0.3);
    border-top: 1px solid rgba(94, 189, 249, 0.2);
    padding: 30px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    margin: 0;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    will-change: transform;
    display: block;
    align-self: flex-start;
}

.quick-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
    opacity: 0.6;
}

.quick-nav__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-nav__link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    background: rgba(94, 189, 249, 0.15);
    border: 2px solid rgba(94, 189, 249, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.3);
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-nav__link svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.quick-nav__link:hover svg {
    opacity: 1;
}

.quick-nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 189, 249, 0.4), transparent);
    transition: left 0.6s ease;
}

.quick-nav__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.6), rgba(26, 144, 218, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quick-nav__link:hover::before {
    left: 100%;
}

.quick-nav__link:hover::after {
    opacity: 1;
}

.quick-nav__link:hover {
    color: #ffffff;
    background: rgba(94, 189, 249, 0.25);
    border-color: #5ebdf9;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(94, 189, 249, 0.4),
        0 0 30px rgba(94, 189, 249, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 15px rgba(94, 189, 249, 0.6);
}

.quick-nav__link:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(94, 189, 249, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Free Programs Note */
.free-programs-note {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 10px;
    font-size: 14px;
}

/* Site Search */
.site-search {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.site-search__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.site-search__input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(94, 189, 249, 0.4);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-search__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-search__input:focus {
    border-color: #5ebdf9;
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 
        0 8px 25px rgba(94, 189, 249, 0.4),
        0 0 30px rgba(94, 189, 249, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-search__button {
    position: absolute;
    right: 8px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.3) 0%, rgba(26, 144, 218, 0.3) 100%);
    border: 2px solid rgba(94, 189, 249, 0.5);
    border-radius: 10px;
    color: #5ebdf9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.site-search__button:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.4) 0%, rgba(26, 144, 218, 0.4) 100%);
    border-color: #5ebdf9;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.4);
}

.site-search__button:active {
    transform: scale(0.95);
}

/* Search Results */
.search-results {
    margin-top: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 45, 74, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(94, 189, 249, 0.3);
    border-bottom: 1px solid rgba(94, 189, 249, 0.3);
    width: 100%;
    min-height: 200px;
}

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

.search-results-section {
    margin-bottom: 50px;
    width: 100%;
}

.search-results-section:last-child {
    margin-bottom: 0;
}

/* Стили для сеток в результатах поиска */
.search-results .games-grid,
.search-results .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .search-results .games-grid,
    .search-results .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .search-results .games-grid,
    .search-results .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.search-results-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.5);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(94, 189, 249, 0.3);
}

.search-no-results {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .site-search {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .site-search__input {
        font-size: 14px;
        padding: 14px 45px 14px 18px;
    }
    
    .site-search__button {
        width: 36px;
        height: 36px;
        right: 6px;
    }
    
    .search-results-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* Section IDs for smooth scroll offset */
#games,
#spoofers,
#free-solutions,
#products,
#free-programs {
    scroll-margin-top: 100px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(94, 189, 249, 0.4);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(94, 189, 249, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.3) 0%, rgba(26, 144, 218, 0.3) 100%);
    border-color: #5ebdf9;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(94, 189, 249, 0.4),
        0 0 40px rgba(94, 189, 249, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 
        0 4px 15px rgba(94, 189, 249, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #5ebdf9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(94, 189, 249, 0.5));
}

.scroll-to-top:hover svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 12px rgba(94, 189, 249, 0.8));
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    margin-bottom: 40px;
}

.page-title {
    font-size: 28px; /* Компактные заголовки, умещающиеся на одной строке */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.3);
}

.page-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.2);
}

/* Product Image Hover Effect */
.product-image-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 20px 0;
    cursor: pointer;
    line-height: 0;
}

.product-image-container .product-image-main {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.2);
}

.product-image-container .product-image-hover {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(94, 189, 249, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.3);
}

.product-image-container:hover .product-image-main {
    opacity: 0 !important;
}

.product-image-container:hover .product-image-hover {
    opacity: 1 !important;
}

/* Page Content */
.page-content {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.content-text {
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.content-text p {
    margin-bottom: 22px;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.85;
}

.content-text .content-subheading {
    font-size: 22px;
    font-weight: 700;
    color: #5ebdf9;
    margin: 40px 0 22px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(94, 189, 249, 0.3);
    line-height: 1.4;
}

.content-text .content-subheading:first-child {
    margin-top: 0;
}

.content-text .features-list,
.content-text .games-list {
    list-style: none;
    padding: 22px 28px;
    background: rgba(94, 189, 249, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 22px 0 32px 0;
    border-left: 4px solid #5ebdf9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.content-text .features-list li,
.content-text .games-list li {
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 28px;
    line-height: 1.75;
}

.content-text .features-list li::before,
.content-text .games-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.4;
}

.content-text a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.content-text a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 8px 32px rgba(94, 189, 249, 0.1);
}

.legal-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #5ebdf9;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(94, 189, 249, 0.3);
}

.legal-section-content {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.legal-section-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.legal-section-content p:last-child {
    margin-bottom: 0;
}

.legal-text {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    padding: 30px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.legal-text p {
    margin-bottom: 18px;
    text-align: justify;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
}

.legal-section-content a,
.legal-text a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.legal-section-content a:hover,
.legal-text a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
}

/* About Page Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.about-section:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 8px 32px rgba(94, 189, 249, 0.1);
}

.about-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #5ebdf9;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(94, 189, 249, 0.3);
}

.about-section-content {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.about-section-content p {
    margin-bottom: 18px;
    text-align: justify;
}

.about-section-content p:last-child {
    margin-bottom: 0;
}

.about-type-block {
    background: rgba(26, 144, 218, 0.1);
    border-left: 3px solid #5ebdf9;
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.about-type-block:last-child {
    margin-bottom: 0;
}

.about-type-title {
    font-size: 20px;
    font-weight: 600;
    color: #5ebdf9;
    margin-bottom: 15px;
}

.about-type-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.about-type-content p {
    margin-bottom: 12px;
}

.about-type-content p:last-child {
    margin-bottom: 0;
}

.about-info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.about-info-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.about-info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5ebdf9;
    font-weight: bold;
    font-size: 18px;
}

.about-section-content a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.about-section-content a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
}

/* More Cheats Page Styles */
.more-cheats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.more-cheats-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cheats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.cheat-card {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cheat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(94, 189, 249, 0.15);
    border-color: rgba(94, 189, 249, 0.4);
}

.cheat-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #5ebdf9;
}

.cheat-card-description {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    flex-grow: 1;
}

.cheat-card-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.8) 0%, rgba(94, 189, 249, 0.8) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-sizing: border-box;
    border: 1px solid rgba(94, 189, 249, 0.3);
}

.cheat-card-button:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 1) 0%, rgba(94, 189, 249, 1) 100%);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(94, 189, 249, 0.3);
}

/* Guarantees Page Styles */
.guarantees-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 60px;
    font-size: 17px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(94, 189, 249, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.guarantees-content p {
    margin-bottom: 24px;
    text-align: justify;
    text-justify: inter-word;
}

.guarantees-content p:last-child {
    margin-bottom: 0;
}

.guarantees-content a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.guarantees-content a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

@media (max-width: 768px) {
    .guarantees-content {
        max-width: 100%;
        padding: 30px 20px;
        font-size: 16px;
        line-height: 1.85;
    }
    
    .guarantees-content p {
        margin-bottom: 20px;
        text-align: left;
    }
}

/* Section dividers */
.games-section,
.products-section,
.free-solutions-section {
    position: relative;
}

.games-section::before,
.products-section::before,
.free-solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 189, 249, 0.4), transparent);
}

/* Sections */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 60px 0 30px;
    text-align: center;
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5ebdf9, #1a90da, transparent);
    border-radius: 2px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.3);
    letter-spacing: -0.3px;
}

.section-title p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
    width: 100%;
    justify-items: stretch;
    align-items: start;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.3);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(94, 189, 249, 0.15) inset;
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out backwards;
    min-height: 420px;
    gap: 16px;
}

/* Последовательное появление карточек */
.products-grid .product-card:nth-child(1) { animation-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.15s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.25s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.35s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(n+9) { animation-delay: 0.45s; }

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 40px rgba(94, 189, 249, 0.35), 0 0 30px rgba(94, 189, 249, 0.15);
    border-color: rgba(94, 189, 249, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.15) 0%, rgba(26, 144, 218, 0.1) 100%);
    position: relative;
    border: 2px solid rgba(94, 189, 249, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s, opacity 0.3s;
    filter: brightness(0.9);
}

/* Стили для ленивой загрузки изображений */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: rgba(94, 189, 249, 0.05);
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-image[src="assets/images/common/placeholder.png"],
.lazy-image[src="/assets/images/common/placeholder.png"] {
    opacity: 0.3;
    filter: blur(5px) brightness(0.9);
}

.lazy-image[src="assets/images/common/placeholder.png"].loaded,
.lazy-image[src="/assets/images/common/placeholder.png"].loaded {
    filter: blur(0) brightness(0.9);
}

/* Loader для изображений */
.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(94, 189, 249, 0.2);
    border-top-color: #5ebdf9;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 10;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Placeholder стили для card-image */
.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.1) 0%, rgba(26, 144, 218, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-image:has(.lazy-image:not(.loaded))::before {
    opacity: 1;
}

/* Показываем placeholder пока изображение не загружено */
.card-image:has(.lazy-image:not(.loaded)) {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.15) 0%, rgba(26, 144, 218, 0.1) 100%);
}

.product-card:hover .card-image {
    border-color: rgba(94, 189, 249, 0.6);
    box-shadow: 0 6px 25px rgba(94, 189, 249, 0.4), 0 0 30px rgba(94, 189, 249, 0.2);
}

.product-card:hover .card-image img {
    filter: brightness(1.15) saturate(1.1);
    box-shadow: 0 0 25px rgba(94, 189, 249, 0.4);
}

/* Product card image hover effect */
.product-card .card-image.product-image-container {
    position: relative;
    height: 180px;
}

.product-card .card-image.product-image-container .product-image-main,
.product-card .card-image.product-image-container .product-image-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-card .card-image.product-image-container .product-image-main {
    position: relative;
    z-index: 1;
}

.product-card .card-image.product-image-container .product-image-hover {
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .card-image.product-image-container .product-image-main {
    opacity: 0;
}

.product-card:hover .card-image.product-image-container .product-image-hover {
    opacity: 1;
}

.product-card:hover .card-image:not(.product-image-container) img {
    transform: scale(1.05);
}

/* Анимации для изображений в карточках товаров */
.product-card .card-image {
    animation: imageFadeIn 0.6s ease-out;
}

.product-card .card-image.product-image-container {
    animation: imageContainerFadeIn 0.8s ease-out;
}

.product-card .card-image.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.1) 0%, rgba(26, 144, 218, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: imageGlow 3s ease-in-out infinite;
}

.product-card:hover .card-image.product-image-container::before {
    opacity: 0.6;
}

.product-card .card-image.product-image-container .product-image-main {
    animation: imageSlideIn 0.7s ease-out;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.product-card .card-image.product-image-container .product-image-hover {
    animation: imageSlideInReverse 0.7s ease-out;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.product-card:hover .card-image.product-image-container .product-image-main {
    opacity: 0;
    transform: scale(0.95) translateX(-5px);
}

.product-card:hover .card-image.product-image-container .product-image-hover {
    opacity: 1;
    transform: scale(1.02) translateX(0);
}

/* Градиентный overlay на изображениях карточек */
.product-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.6) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    transition: opacity 0.4s ease;
}

.product-card:hover .card-image::after {
    opacity: 0.3;
}

/* Анимация для карточек игр */
.game-card .card-image {
    animation: imageFadeIn 0.6s ease-out;
}

.game-card .card-image img {
    transition: all 0.4s ease;
}

.game-card:hover .card-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 25px rgba(94, 189, 249, 0.4);
}

.game-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.6) 0%, transparent 100%);
    z-index: 3;
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    transition: opacity 0.4s ease;
}

.game-card:hover .card-image::after {
    opacity: 0.3;
}

/* Keyframes для анимаций */
@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageContainerFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-10px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes imageSlideInReverse {
    0% {
        opacity: 0;
        transform: translateX(10px) scale(0.98);
    }
    100% {
        opacity: 0;
        transform: translateX(0) scale(1);
    }
}

@keyframes imageDataChange {
    0%, 100% {
        filter: brightness(0.9) saturate(1);
    }
    50% {
        filter: brightness(1.05) saturate(1.1);
    }
}

@keyframes imageGlow {
    0%, 100% {
        opacity: 0;
        box-shadow: 0 0 0 rgba(94, 189, 249, 0);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(94, 189, 249, 0.3);
    }
}

@keyframes dataPulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
}


.product-card .card-content {
    padding: 0 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    gap: 14px;
}

/* Скрываем блок античитов/игр в карточках товаров */
.product-card .product-anticheats-games {
    display: none !important;
    margin: 0;
    min-height: 0;
    height: 0;
    overflow: hidden;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s;
}

.product-card:hover h3 {
    color: #5ebdf9;
    text-shadow: 0 0 15px rgba(94, 189, 249, 0.5);
}

/* Стили для названия спуфера в карточке товара */
.product-card .product-card-link-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 14px;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5ebdf9 0%, #1a90da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 8px;
}

.product-card:hover .product-card-link-title {
    background: linear-gradient(135deg, #5ebdf9 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.6);
    transform: scale(1.05);
}

.product-card .product-price {
    font-size: 20px;
    font-weight: 600;
    color: #5ebdf9;
    margin: 15px 0;
    text-align: center;
}

.product-card .product-price-min {
    text-align: center;
    margin: 14px 0;
    padding: 14px 12px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.12) 0%, rgba(26, 144, 218, 0.1) 100%);
    border-radius: 12px;
    border: 1.5px solid rgba(94, 189, 249, 0.35);
    box-shadow: 0 2px 8px rgba(94, 189, 249, 0.15);
}

.product-card .product-price-min .price-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-price-min .price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #5ebdf9;
    text-shadow: 0 0 15px rgba(94, 189, 249, 0.6);
    letter-spacing: 0.5px;
}

.product-card .product-price-min .price-currency {
    margin-left: 4px;
    color: #5ebdf9;
    font-size: 18px;
    font-weight: 600;
}

.product-card:hover .product-price-min {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.15) 0%, rgba(26, 144, 218, 0.12) 100%);
    border-color: rgba(94, 189, 249, 0.5);
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.2);
}

.product-card .product-details-button {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.25) 0%, rgba(26, 144, 218, 0.2) 100%);
    border: 2px solid rgba(94, 189, 249, 0.5);
    border-radius: 12px;
    color: #5ebdf9;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 16px rgba(94, 189, 249, 0.25);
}

.product-card .product-details-button:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.4) 0%, rgba(26, 144, 218, 0.35) 100%);
    border-color: #5ebdf9;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(94, 189, 249, 0.5), 0 0 30px rgba(94, 189, 249, 0.25);
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.product-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-card a.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-grow: 1;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    justify-items: stretch;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-card {
        padding: 12px;
    }

    .game-card .card-image {
        height: 140px;
    }

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

/* Ancient Spoofer - Anti-Cheats, Spoof List, Cleaner Support hover effects */
.anti-cheat-item,
.spoof-list-item,
.cleaner-support-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.anti-cheat-item::before,
.spoof-list-item::before,
.cleaner-support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 189, 249, 0.2), transparent);
    transition: left 0.5s ease;
}

.anti-cheat-item:hover::before,
.spoof-list-item:hover::before,
.cleaner-support-item:hover::before {
    left: 100%;
}

.anti-cheat-item:hover,
.cleaner-support-item:hover {
    background: rgba(94, 189, 249, 0.25) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 20px rgba(94, 189, 249, 0.4);
    border: 1px solid rgba(94, 189, 249, 0.5);
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.8);
}

.spoof-list-item:hover {
    color: #5ebdf9 !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.6);
    padding-left: 10px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: cardFadeIn 0.6s ease-out backwards;
}

/* Последовательное появление карточек игр */
.games-grid .game-card:nth-child(1) { animation-delay: 0.05s; }
.games-grid .game-card:nth-child(2) { animation-delay: 0.1s; }
.games-grid .game-card:nth-child(3) { animation-delay: 0.15s; }
.games-grid .game-card:nth-child(4) { animation-delay: 0.2s; }
.games-grid .game-card:nth-child(5) { animation-delay: 0.25s; }
.games-grid .game-card:nth-child(6) { animation-delay: 0.3s; }
.games-grid .game-card:nth-child(7) { animation-delay: 0.35s; }
.games-grid .game-card:nth-child(8) { animation-delay: 0.4s; }
.games-grid .game-card:nth-child(n+9) { animation-delay: 0.45s; }

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(94, 189, 249, 0.3);
    border-color: rgba(94, 189, 249, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

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

.game-card .card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    background: rgba(94, 189, 249, 0.1);
    border: 1px solid rgba(94, 189, 249, 0.2);
    position: relative;
}

.game-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
    filter: brightness(0.9);
}

.game-card:hover .card-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(94, 189, 249, 0.3);
}

.game-card .card-content {
    padding: 0 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-card h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s;
}

.game-card:hover h3 {
    color: #5ebdf9;
    text-shadow: 0 0 15px rgba(94, 189, 249, 0.5);
}

/* Стили для названия игры в карточке */
.game-card .game-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #5ebdf9 0%, #1a90da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-card:hover .game-title {
    background: linear-gradient(135deg, #5ebdf9 0%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.6);
    transform: scale(1.05);
}

.game-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.game-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Sections */
.prices-section,
.games-section,
.products-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(94, 189, 249, 0.1);
}

.free-solutions-section {
    margin: 40px 0;
    padding: 60px 0;
}

/* Мобильная версия - убираем padding из секций для полной ширины */
@media (max-width: 768px) {
    .products-section {
        padding: 20px 0;
        margin: 30px 0;
    }
    
    .free-solutions-section {
        padding: 20px 0;
        margin: 30px 0;
    }
    
    /* Убеждаемся, что сетки занимают всю ширину только на мобильных */
    .products-section .products-grid,
    .free-solutions-section .products-grid {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .products-section {
        padding: 15px 0;
    }
    
    .free-solutions-section {
        padding: 15px 0;
    }
    
    .products-section .products-grid,
    .free-solutions-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }
}

.prices-section .section-title,
.games-section .section-title,
.products-section .section-title {
    margin-top: 0;
}

/* Карточки игр в секции на страницах продуктов - как на главной */
.games-section .games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Поддержка структуры без .card-image (прямой img внутри .game-card) */
.games-section .game-card > a > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block;
    background: rgba(94, 189, 249, 0.1);
    border: 1px solid rgba(94, 189, 249, 0.2);
    transition: all 0.4s;
    filter: brightness(0.9);
}

.games-section .game-card:hover > a > img {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(94, 189, 249, 0.3);
}

@media (max-width: 1200px) {
    .games-section .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-section .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .games-section .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .games-section .games-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .game-card {
        padding: 18px;
    }
    
    .game-card .game-title {
        font-size: 18px;
    }
}

/* Prices */
.prices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.price-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #2e7db8 0%, #1e5f8f 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(94, 189, 249, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 1);
    min-width: 180px;
}

.price-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.price-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.price-button:hover::before {
    left: 100%;
}

.price-button:hover::after {
    width: 300px;
    height: 300px;
}

.price-button:hover {
    background: linear-gradient(135deg, #3a8dc8 0%, #2a6fa0 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(94, 189, 249, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.3) inset;
    border-color: rgba(255, 255, 255, 0.4);
}

.price-button * {
    position: relative;
    z-index: 1;
}

/* Requirements */
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
    display: grid;
    gap: 14px;
}

.requirements-list li {
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.12) 0%, rgba(26, 144, 218, 0.08) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border-left: 4px solid #5ebdf9;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.18) 0%, rgba(26, 144, 218, 0.12) 100%);
    border-left-color: #7cc8ff;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(94, 189, 249, 0.2);
}

.requirements-list li:last-child {
    margin-bottom: 0;
}

/* Footer Notice */
.footer-notice {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(15, 27, 46, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(94, 189, 249, 0.2);
    border-bottom: 1px solid rgba(94, 189, 249, 0.2);
    position: relative;
}

.footer-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
}

.footer-notice__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
}

.footer-notice__text strong {
    color: #5ebdf9;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
}

.footer-notice__text a {
    color: #5ebdf9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

.footer-notice__text a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(94, 189, 249, 0.8);
    border-bottom-color: #5ebdf9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 27, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 0;
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.5);
}

.footer__logo:hover {
    color: #5ebdf9;
    text-shadow: 0 0 30px rgba(94, 189, 249, 0.8);
    transform: translateX(5px);
}

.footer__text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5ebdf9, transparent);
    border-radius: 2px;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer__list a:hover {
    color: #5ebdf9;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(94, 189, 249, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    }
    
    .header__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header__nav {
        justify-content: center;
        gap: 12px;
    }
    
    .header__logo {
        font-size: 22px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Уменьшаем шрифт цены в мобильной версии */
    .product-card .product-price-min .price-label {
        font-size: 10px;
    }
    
    .product-card .product-price-min .price-amount {
        font-size: 18px;
    }
    
    .product-card .product-price-min .price-currency {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header__logo {
        font-size: 20px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Еще больше уменьшаем шрифт цены на маленьких экранах */
    .product-card .product-price-min .price-label {
        font-size: 9px;
    }
    
    .product-card .product-price-min .price-amount {
        font-size: 16px;
    }
    
    .product-card .product-price-min .price-currency {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .hwid-spoofer-demo {
        padding: 15px;
    }
    
    .demo-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .param-item {
        padding: 10px;
        gap: 6px;
    }
    
    .param-label {
        font-size: 12px;
    }
    
    .param-value {
        font-size: 11px;
    }
    
    .computer-animation {
        max-width: 100%;
        height: 300px;
    }
    
    .quick-nav {
        padding: 20px 0;
    }
    
    .quick-nav__links {
        gap: 15px;
        flex-direction: column;
    }
    
    .quick-nav__link {
        font-size: 14px;
        padding: 12px 20px;
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .quick-nav {
        padding: 15px 0;
        margin-bottom: 30px;
    }
    
    .quick-nav__links {
        gap: 10px;
    }
    
    .quick-nav__link {
        font-size: 13px;
        padding: 10px 16px;
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }
    
    #games,
    #products,
    #free-programs {
        scroll-margin-top: 80px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
    }
    
    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }
    
    #games,
    #products,
    #free-programs {
        scroll-margin-top: 80px;
    }
    
    .page-title {
        font-size: 24px; /* Компактные заголовки на мобильных устройствах */
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .page-header {
        padding: 30px 0 20px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 24px;
        margin: 40px 0 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        margin: 30px 0 15px;
        padding-bottom: 15px;
    }
    
    .section-title h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card {
        padding: 18px;
        min-height: 380px;
    }
    
    .product-card .card-image {
        height: 160px;
        margin-bottom: 14px;
    }
    
    .product-card .card-image.product-image-container {
        height: 160px;
    }
    
    .product-card .product-card-link-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .product-card .product-details-button {
        padding: 12px 22px;
        font-size: 13px;
    }
    
    .product-card .product-price-min {
        padding: 12px 10px;
        margin: 12px 0;
    }
    
    .product-card .product-price-min .price-amount {
        font-size: 22px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .price-button {
        min-width: 100%;
        margin-bottom: 12px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .price-button {
        padding: 12px 18px;
        font-size: 15px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-notice__text {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .game-content-text {
        padding: 30px 25px;
        font-size: 16px;
        line-height: 1.85;
        margin: 40px 0;
        border-radius: 12px;
    }
    
    .game-content-text p {
        margin-bottom: 18px;
        text-align: justify;
    }
}

/* Advice Page Styles */
.advice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 17px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.9);
}

.advice-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.advice-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
    border-radius: 2px;
}

.advice-heading:first-child {
    margin-top: 0;
}

.advice-text {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.advice-text p {
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.advice-text p:last-child {
    margin-bottom: 0;
}

.advice-text a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.advice-text a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

.advice-text strong {
    color: #ffffff;
    font-weight: 600;
}

.advice-text em {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Rich text blocks (used on pages/other/* and legal pages) */
.advice-text .content-subheading {
    margin: 45px 0 20px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: left;
    padding: 0;
    padding-left: 16px;
    border-left: 4px solid rgba(94, 189, 249, 0.9);
    background: transparent;
    border-radius: 0;
    text-shadow: 0 0 20px rgba(94, 189, 249, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.advice-text .content-subheading:hover {
    border-left-color: rgba(94, 189, 249, 1);
    text-shadow: 0 0 30px rgba(94, 189, 249, 0.4);
    padding-left: 20px;
}

.advice-text .content-subheading:first-child {
    margin-top: 0;
}

.advice-text ul.content-list,
.advice-text ol.content-list {
    margin: 20px 0 28px;
    padding-left: 0;
    list-style: none;
    position: relative;
}

.advice-text ul.content-list,
.advice-text ol.content-list {
    background: rgba(10, 22, 40, 0.3);
    border-left: 3px solid rgba(94, 189, 249, 0.4);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 18px 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    max-width: 700px;
}

.advice-text ul.content-list:hover,
.advice-text ol.content-list:hover {
    border-left-color: rgba(94, 189, 249, 0.6);
    background: rgba(10, 22, 40, 0.4);
}

.advice-text ul.content-list li,
.advice-text ol.content-list li {
    margin: 6px 0;
    padding: 4px 0 4px 24px;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.2s ease;
    position: relative;
    font-size: 0.95em;
    line-height: 1.6;
}

.advice-text ul.content-list li::before,
.advice-text ol.content-list li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: rgba(94, 189, 249, 0.6);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.advice-text ul.content-list li:hover,
.advice-text ol.content-list li:hover {
    color: rgba(255, 255, 255, 0.95);
    padding-left: 28px;
}

.advice-text ul.content-list li:hover::before,
.advice-text ol.content-list li:hover::before {
    background: rgba(94, 189, 249, 0.9);
    width: 6px;
    height: 6px;
}

.advice-text ul.content-list {
    counter-reset: list-counter;
}

.advice-text ol.content-list {
    counter-reset: list-counter;
}

.advice-text ol.content-list li {
    counter-increment: list-counter;
}

.advice-text ol.content-list li::before {
    content: counter(list-counter) '.';
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    left: 6px;
    font-weight: 600;
    font-size: 13px;
    color: rgba(94, 189, 249, 0.7);
    box-shadow: none;
    transform: translateY(-50%);
}

.advice-text ol.content-list li:hover::before {
    color: rgba(94, 189, 249, 0.9);
    transform: translateY(-50%);
    box-shadow: none;
}

.advice-text .content-callout {
    margin: 24px 0 28px;
    padding: 20px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.6) 0%, rgba(26, 45, 70, 0.5) 100%);
    border: 1px solid rgba(94, 189, 249, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.advice-text .content-callout:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.advice-text .content-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(94, 189, 249, 0.9) 0%, rgba(26, 144, 218, 0.9) 100%);
    transition: width 0.3s ease;
}

.advice-text .content-callout:hover::before {
    width: 6px;
}

.advice-text .content-callout.is-warning::before {
    background: linear-gradient(180deg, rgba(255, 184, 77, 0.95) 0%, rgba(255, 152, 0, 0.95) 100%);
}

.advice-text .content-callout.is-success::before {
    background: linear-gradient(180deg, rgba(88, 214, 141, 0.95) 0%, rgba(56, 178, 112, 0.95) 100%);
}

.advice-text .content-callout-title {
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.advice-text .content-callout.is-warning .content-callout-title {
    color: rgba(255, 220, 150, 1);
    text-shadow: 0 2px 12px rgba(255, 184, 77, 0.4);
}

.advice-text .content-callout.is-success .content-callout-title {
    color: rgba(170, 245, 210, 1);
    text-shadow: 0 2px 12px rgba(88, 214, 141, 0.4);
}

.advice-text .content-callout-body p {
    margin: 0;
    text-align: left;
    text-justify: unset;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.advice-text .content-callout-body p + p {
    margin-top: 12px;
}

/* Special styling for important sentences in callouts */
.advice-text .content-callout-body p strong,
.advice-text .content-callout-body p .important-sentence {
    color: rgba(255, 209, 128, 1);
    font-weight: 600;
    font-size: 1.05em;
    text-shadow: 0 0 8px rgba(255, 184, 77, 0.3);
    display: inline-block;
    padding: 2px 4px;
    border-radius: 4px;
    background: rgba(255, 184, 77, 0.1);
}

.advice-text .content-callout.is-warning .content-callout-body p strong,
.advice-text .content-callout.is-warning .content-callout-body p .important-sentence {
    color: rgba(255, 240, 180, 1);
    background: rgba(255, 184, 77, 0.15);
    text-shadow: 0 0 10px rgba(255, 184, 77, 0.5);
}

/* Advice Images */
.advice-image-wrapper {
    margin: 20px auto;
    max-width: 600px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.advice-image-wrapper a {
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.advice-image-wrapper a:hover {
    transform: scale(1.02);
}

.advice-image-wrapper a:hover .image-zoom-icon {
    opacity: 1;
}

.advice-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.image-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border: 2px solid rgba(94, 189, 249, 0.5);
}

.image-zoom-icon svg {
    width: 28px;
    height: 28px;
}

/* Before/After */
.advice-before-after {
    margin: 30px auto;
    max-width: 700px;
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(94, 189, 249, 0.15);
}

.before-after-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: auto;
    display: block;
}

.before-after-separator {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #5ebdf9, transparent);
    border-radius: 2px;
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Gallery */
.advice-gallery {
    margin: 30px auto;
    max-width: 800px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.15);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(94, 189, 249, 0.3);
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-controls {
    display: none !important; /* Скрываем контролы галереи - навигация происходит через lightbox при клике на изображение */
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gallery-prev,
.gallery-next {
    display: none !important; /* Скрываем кнопки навигации галереи - навигация через lightbox */
    width: 40px;
    height: 40px;
    background: rgba(94, 189, 249, 0.2);
    border: 1px solid rgba(94, 189, 249, 0.3);
    border-radius: 50%;
    color: #5ebdf9;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(94, 189, 249, 0.3);
    border-color: #5ebdf9;
    transform: scale(1.1);
}

.gallery-counter {
    display: none !important; /* Скрываем счетчик галереи - навигация через lightbox */
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Video */
.advice-video-wrapper {
    margin: 30px auto;
    max-width: 700px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.advice-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Iframe */
.advice-iframe-wrapper {
    margin: 30px auto;
    max-width: 700px;
    text-align: center;
}

.advice-iframe-wrapper iframe {
    border-radius: 12px;
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.15);
}

/* Advice Accordion */
.advice-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.advice-accordion-item {
    background: rgba(10, 22, 40, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(94, 189, 249, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.advice-accordion-item:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 4px 20px rgba(94, 189, 249, 0.1);
}

.advice-accordion-item.active {
    border-color: rgba(94, 189, 249, 0.5);
    box-shadow: 0 6px 30px rgba(94, 189, 249, 0.2);
}

.advice-accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.advice-accordion-header:hover {
    background: rgba(94, 189, 249, 0.05);
    color: #5ebdf9;
}

.advice-accordion-item.active .advice-accordion-header {
    color: #5ebdf9;
    background: rgba(94, 189, 249, 0.1);
}

.advice-accordion-title {
    flex: 1;
    padding-right: 20px;
}

.advice-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ebdf9;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.advice-accordion-item.active .advice-accordion-icon {
    transform: rotate(180deg);
}

.advice-accordion-icon svg {
    width: 100%;
    height: 100%;
}

.advice-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.advice-accordion-item.active .advice-accordion-content {
    max-height: none;
    overflow: visible;
    padding: 0 25px 25px;
}

.advice-accordion-body {
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.95;
    overflow: visible;
    max-height: none;
}

.advice-accordion-body .advice-heading {
    font-size: 24px;
    margin: 30px 0 20px;
    text-align: left;
}

.advice-accordion-body .advice-heading:first-child {
    margin-top: 0;
}

.advice-accordion-body .advice-text {
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.advice-accordion-body .advice-image-wrapper {
    margin: 20px auto;
    max-width: 550px;
}

.advice-accordion-body .advice-before-after,
.advice-accordion-body .advice-gallery,
.advice-accordion-body .advice-video-wrapper,
.advice-accordion-body .advice-iframe-wrapper {
    margin: 20px auto;
}

.advice-accordion-body .advice-before-after {
    max-width: 650px;
}

.advice-accordion-body .advice-gallery {
    max-width: 750px;
}

.advice-accordion-body .advice-video-wrapper,
.advice-accordion-body .advice-iframe-wrapper {
    max-width: 650px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(90vh - 160px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(94, 189, 249, 0.2);
}

.lightbox-video {
    max-width: 90%;
    max-height: calc(90vh - 160px);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(94, 189, 249, 0.2);
    background: #000;
}

.lightbox-video-wrapper {
    position: relative;
    display: inline-block;
}

.lightbox-video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(26, 144, 218, 0.95) 0%, rgba(94, 189, 249, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(94, 189, 249, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 0 40px rgba(94, 189, 249, 0.6), inset 0 0 25px rgba(255, 255, 255, 0.15);
    animation: pulse-play-button 2s ease-in-out infinite;
}

@keyframes pulse-play-button {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 40px rgba(94, 189, 249, 0.6), inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 50px rgba(94, 189, 249, 0.8), inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

.lightbox-video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgba(94, 189, 249, 1) 0%, rgba(26, 144, 218, 1) 100%);
    box-shadow: 0 0 60px rgba(94, 189, 249, 0.9), inset 0 0 35px rgba(255, 255, 255, 0.25);
    animation: none;
}

.lightbox-video-play-overlay svg {
    width: 50px;
    height: 50px;
    fill: #ffffff;
    margin-left: 6px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.lightbox-video-wrapper.playing .lightbox-video-play-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(94, 189, 249, 0.4);
    border-radius: 50%;
    color: #5ebdf9;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.35) 0%, rgba(26, 144, 218, 0.35) 100%);
    border-color: #5ebdf9;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(94, 189, 249, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.2) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(94, 189, 249, 0.4);
    border-radius: 50%;
    color: #5ebdf9;
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 150px;
}

.lightbox-next {
    right: 150px;
}

/* Адаптивные отступы для больших экранов */
@media (min-width: 1400px) {
    .lightbox-prev {
        left: 200px;
    }
    
    .lightbox-next {
        right: 200px;
    }
}

/* Адаптивные отступы для очень больших экранов */
@media (min-width: 1920px) {
    .lightbox-prev {
        left: calc(8vw + 60px);
    }
    
    .lightbox-next {
        right: calc(8vw + 60px);
    }
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.35) 0%, rgba(26, 144, 218, 0.35) 100%);
    border-color: #5ebdf9;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 30px rgba(94, 189, 249, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
    z-index: 10003;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.25) 0%, rgba(26, 144, 218, 0.25) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid rgba(94, 189, 249, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

.lightbox.active .lightbox-counter {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .advice-content {
        padding: 20px 0;
        font-size: 16px;
    }
    
    .advice-accordion {
        gap: 10px;
    }
    
    .advice-accordion-header {
        padding: 15px 20px;
        font-size: 18px;
    }
    
    .advice-accordion-content {
        padding: 0 20px;
    }
    
    .advice-accordion-item.active .advice-accordion-content {
        padding: 0 20px 20px;
    }
    
    .advice-accordion-body {
        font-size: 16px;
        padding-top: 15px;
    }
    
    .advice-accordion-body .advice-heading {
        font-size: 20px;
        margin: 25px 0 15px;
    }
    
    .advice-heading {
        font-size: 24px;
        margin: 30px 0 20px;
    }
    
    .advice-image-wrapper {
        margin: 15px auto;
        max-width: 100%;
    }
    
    .advice-image {
        max-height: 300px;
    }
    
    .advice-before-after {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .advice-gallery {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .advice-video-wrapper,
    .advice-iframe-wrapper {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .advice-accordion-body .advice-image-wrapper {
        max-width: 100%;
    }
    
    .advice-accordion-body .advice-before-after,
    .advice-accordion-body .advice-gallery,
    .advice-accordion-body .advice-video-wrapper,
    .advice-accordion-body .advice-iframe-wrapper {
        max-width: 100%;
    }
    
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .before-after-separator {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #5ebdf9, transparent);
    }
}

/* Game Content Styles */
.game-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 17px;
    line-height: 1.95;
}

.game-content-heading {
    color: #ffffff;
    font-weight: 600;
    margin: 40px 0 25px;
    text-align: center;
}

.game-content-heading:first-child {
    margin-top: 0;
}

.game-content-text {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.25);
    border-radius: 16px;
    padding: 40px 45px;
    margin: 50px 0;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(94, 189, 249, 0.1) inset;
    transition: all 0.3s ease;
    text-align: justify;
    text-justify: inter-word;
}

.game-content-text:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 12px 48px rgba(94, 189, 249, 0.2), 0 0 0 1px rgba(94, 189, 249, 0.15) inset;
    background: rgba(10, 22, 40, 0.75);
}

.game-content-text p {
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}

.game-content-text p:last-child {
    margin-bottom: 0;
}

.game-content-text a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.game-content-text a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

.game-content-text strong {
    color: #ffffff;
    font-weight: 600;
}

.game-content-text em {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

/* Game Images */
.game-image-wrapper {
    margin: 30px auto;
    max-width: 700px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 22, 40, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-image-wrapper a {
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.game-image-wrapper a:hover {
    transform: scale(1.02);
}

.game-image-wrapper a:hover .image-zoom-icon {
    opacity: 1;
}

.game-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.game-image-caption {
    padding: 15px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-style: italic;
    border-top: 1px solid rgba(94, 189, 249, 0.2);
    margin: 0;
}

.image-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    color: #5ebdf9;
}

.game-image-wrapper:hover .image-zoom-icon {
    opacity: 1;
}

/* Products Grid на страницах игр - 4 товара в строке */
.game-content .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .game-content .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .game-content {
        padding: 20px 0;
        font-size: 16px;
    }
    
    .game-content-heading {
        font-size: 22px;
        margin: 25px 0 15px;
    }
    
    .game-image-wrapper {
        margin: 20px auto;
        max-width: 100%;
    }
    
    .game-image {
        max-height: 300px;
    }
    
    .game-image-caption {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .game-content .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .game-content-text {
        padding: 30px 25px;
        font-size: 16px;
        line-height: 1.85;
        margin: 40px 0;
        border-radius: 12px;
    }
    
    .game-content-text p {
        margin-bottom: 18px;
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .game-content .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-content-text {
        padding: 20px 18px;
        font-size: 15px;
        line-height: 1.8;
        margin: 30px 0;
    }
    
    .game-content-text p {
        margin-bottom: 16px;
    }
    
    .content-text {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .content-text p {
        margin-bottom: 16px;
    }
    
    .content-text .content-subheading {
        font-size: 18px;
        margin: 30px 0 18px 0;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .lightbox-content {
        padding: 60px 20px;
        max-width: 95%;
    }
    
    .lightbox-image {
        max-height: calc(90vh - 120px);
    }
    
    .lightbox-video {
        max-height: calc(90vh - 120px);
    }
    
    .lightbox-video-play-overlay {
        width: 80px;
        height: 80px;
    }
    
    .lightbox-video-play-overlay svg {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .lightbox-next {
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Анимация для неработающих видео */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.video-loading {
    position: relative;
}

.video-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(94, 189, 249, 0.3);
    border-top-color: #5ebdf9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.video-error {
    position: relative;
}

.video-error::after {
    content: '⚠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Кнопка Play для видео */
.video-container {
    position: relative;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(94, 189, 249, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(94, 189, 249, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.video-play-button:hover {
    background: rgba(94, 189, 249, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(94, 189, 249, 0.6);
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
    margin-left: 4px; /* Смещение для визуального центрирования треугольника */
}

.video-container.playing .video-play-button {
    display: none;
}

/* Product Content Styles */
.product-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 17px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.85);
}

.product-content-heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 25px;
    text-align: center;
    line-height: 1.3;
}

.product-content-heading:first-child {
    margin-top: 0;
}

.product-content-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.product-content-text p {
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}

.product-content-text p:last-child {
    margin-bottom: 0;
}

.product-content-text a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.product-content-text a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

.product-content-text strong {
    color: #ffffff;
    font-weight: 600;
}

.product-content-text em {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Product Description */
.product-description {
    background: rgba(10, 22, 40, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 189, 249, 0.25);
    border-radius: 16px;
    padding: 45px;
    margin: 50px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.product-description:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 12px 48px rgba(94, 189, 249, 0.2);
}

.product-description .section-title {
    font-size: 26px;
    color: #5ebdf9;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid rgba(94, 189, 249, 0.3);
    padding-bottom: 20px;
}

.product-description p {
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-description h2,
.product-description h3 {
    color: #5ebdf9;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.product-description h2 {
    font-size: 24px;
    border-bottom: 1px solid rgba(94, 189, 249, 0.3);
    padding-bottom: 15px;
}

.product-description h3 {
    font-size: 20px;
}

.product-description ul,
.product-description ol {
    margin: 20px 0;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.92);
}

.product-description li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.product-description a {
    color: #5ebdf9;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    font-weight: 500;
}

.product-description a:hover {
    border-bottom-color: #5ebdf9;
    text-shadow: 0 0 10px rgba(94, 189, 249, 0.5);
    color: #7cc8ff;
}

.product-description strong {
    color: #ffffff;
    font-weight: 600;
}

.product-description em {
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

/* Product Video */
.product-video-wrapper,
.video-wrapper {
    margin: 30px auto;
    max-width: 850px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: rgba(10, 22, 40, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(94, 189, 249, 0.25);
    transition: all 0.3s ease;
}

.product-video-wrapper:hover,
.video-wrapper:hover {
    border-color: rgba(94, 189, 249, 0.4);
    box-shadow: 0 12px 32px rgba(94, 189, 249, 0.15);
    transform: translateY(-2px);
}

.product-video-wrapper::before,
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.product-video-wrapper:hover::before,
.video-wrapper:hover::before {
    opacity: 1;
}

.product-video,
.spoofer-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 550px;
    object-fit: contain;
    position: relative;
}

/* Значок плеера для видео (универсальный для всех видео) */
.product-video-play-overlay,
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(94, 189, 249, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 3px solid rgba(94, 189, 249, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 6px 30px rgba(94, 189, 249, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.15);
    animation: subtle-pulse-play 2.5s ease-in-out infinite;
}

/* Ненавязчивая анимация для кнопки Play когда видео выключено */
@keyframes subtle-pulse-play {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        box-shadow: 0 6px 30px rgba(94, 189, 249, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.08);
        opacity: 1;
        box-shadow: 0 8px 40px rgba(94, 189, 249, 0.7), inset 0 0 25px rgba(255, 255, 255, 0.15);
    }
}

.product-video-play-overlay:hover,
.video-play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(94, 189, 249, 0.35);
    border-color: rgba(94, 189, 249, 0.9);
    box-shadow: 0 10px 50px rgba(94, 189, 249, 0.7), inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: none;
}

.product-video-play-overlay svg,
.video-play-overlay svg {
    width: 40px;
    height: 40px;
    fill: #5ebdf9;
    margin-left: 4px;
    filter: drop-shadow(0 3px 8px rgba(94, 189, 249, 0.6));
    transition: all 0.3s ease;
}

.product-video-play-overlay:hover svg,
.video-play-overlay:hover svg {
    fill: #7cc8ff;
    filter: drop-shadow(0 4px 12px rgba(94, 189, 249, 0.8));
}

.product-video-wrapper.playing .product-video-play-overlay,
.video-wrapper.playing .video-play-overlay,
.product-video-wrapper.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    animation: none;
}

/* Индикатор нерабочего видео (универсальный) */
.product-video-wrapper.video-error::after,
.video-wrapper.video-error::after {
    content: '⚠ Видео недоступно';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 68, 68, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: pulse-error 2s ease-in-out infinite;
}

@keyframes pulse-error {
    0%, 100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

/* Product Price Button - улучшенный минималистичный стиль */
.product-price-button-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 420px;
}

.product-price-button {
    display: inline-block;
    padding: 18px 36px;
    background: linear-gradient(135deg, #2e7db8 0%, #1e5f8f 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(94, 189, 249, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 1);
}

.product-price-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.product-price-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.product-price-button:hover::before {
    left: 100%;
}

.product-price-button:hover::after {
    width: 300px;
    height: 300px;
}

.product-price-button:hover {
    background: linear-gradient(135deg, #4aa8e8 0%, #5ebdf9 100%);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(94, 189, 249, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.3) inset;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 1), 0 0 3px rgba(0, 0, 0, 1);
    color: #ffffff;
}

.product-price-button:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(94, 189, 249, 0.4);
    transition: all 0.1s ease;
}

.product-price-button * {
    position: relative;
    z-index: 1;
}

/* Product Content Images */
.product-image-wrapper {
    margin: 30px auto;
    max-width: 700px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-image-wrapper a {
    display: block;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.product-image-wrapper a:hover {
    transform: scale(1.02);
}

.product-image-wrapper a:hover .image-zoom-icon {
    opacity: 1;
}

.product-content-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

/* Videos Grid Styles */
.videos-section {
    padding: 40px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-video-wrapper,
    .video-wrapper {
        max-width: 100%;
        margin: 20px auto;
    }
    
    .product-video,
    .spoofer-video {
        max-height: 400px;
    }
    
    .product-video-play-overlay,
    .video-play-overlay {
        width: 75px;
        height: 75px;
    }
    
    .product-video-play-overlay svg,
    .video-play-overlay svg {
        width: 35px;
        height: 35px;
    }
}

/* Responsive adjustments for product content */
@media (max-width: 768px) {
    .product-content {
        padding: 20px 0;
        font-size: 16px;
    }

    .product-content-heading {
        font-size: 22px;
        margin: 25px 0 15px;
    }

    .product-video-wrapper,
    .video-wrapper {
        margin: 20px auto;
        max-width: 100%;
    }

    .product-video,
    .spoofer-video {
        max-height: 400px;
    }
    
    .product-video-play-overlay,
    .video-play-overlay {
        width: 75px;
        height: 75px;
    }
    
    .product-video-play-overlay svg,
    .video-play-overlay svg {
        width: 35px;
        height: 35px;
    }

    .product-price-button {
        width: 100%;
        padding: 18px 35px;
        font-size: 19px;
        max-width: 100%;
    }

    .product-image-wrapper {
        margin: 20px auto;
        max-width: 100%;
    }

    .product-content-image {
        max-height: 350px;
    }
}

/* Бейдж рекомендации на страницах спуферов */
.spoofer-best-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.2) 0%, rgba(26, 144, 218, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #5ebdf9;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(94, 189, 249, 0.3),
                0 0 0 1px rgba(94, 189, 249, 0.4) inset,
                0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(94, 189, 249, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.spoofer-best-badge .badge-icon {
    font-size: 14px;
    line-height: 1;
    filter: drop-shadow(0 0 4px rgba(94, 189, 249, 0.6));
    animation: spoofer-badge-twinkle 2s ease-in-out infinite;
}

.spoofer-best-badge .badge-text {
    line-height: 1;
}

.spoofer-best-badge:hover {
    background: linear-gradient(135deg, rgba(94, 189, 249, 0.3) 0%, rgba(26, 144, 218, 0.25) 100%);
    border-color: rgba(94, 189, 249, 0.5);
    box-shadow: 0 6px 20px rgba(94, 189, 249, 0.4),
                0 0 0 1px rgba(94, 189, 249, 0.5) inset,
                0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes spoofer-badge-twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

