/* Стили для страниц игр */

:root {
    --text-light: #cbd5e1;
    --text-main: #ffffff;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-primary);
    margin: 20px 0;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(-5px);
}

.cheats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.cheat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.cheat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.cheat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4), 0 0 30px rgba(129, 140, 248, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.cheat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cheat-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.cheat-game-image {
    width: 80px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.cheat-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary-light);
    font-size: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(5000%) hue-rotate(230deg) brightness(100%) contrast(100%);
}

.cheat-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.cheat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.cheat-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    margin-top: auto;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: 'Orbitron', sans-serif;
}

.cheat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.cheat-card:hover .cheat-button {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
}

.cheat-button i {
    transition: transform 0.3s ease;
}

.cheat-card:hover .cheat-button i {
    transform: translateX(5px);
}

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

.info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4), 0 0 30px rgba(129, 140, 248, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .info-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cheats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cheat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cheat-game-image {
        width: 60px;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.feature-badge-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(5000%) hue-rotate(230deg) brightness(100%) contrast(100%);
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.characteristics-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.characteristic-simple-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.characteristic-simple-item:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.characteristic-simple-icon {
    font-size: 2rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.characteristic-simple-content {
    flex: 1;
}

.characteristic-simple-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.characteristic-simple-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.functionality-section {
    margin-top: 60px;
}

/* CourierScript ESP: 3 колонки + Settings по центру */
.functionality-row-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
    align-items: start;
}

.functionality-row-three .functionality-card {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 25px;
}

.functionality-row-centered {
    display: flex;
    justify-content: center;
    width: 100%;
}

.functionality-row-centered .functionality-card {
    max-width: min(420px, 100%);
    width: 100%;
    margin: 0;
    padding: 25px;
}

@media (max-width: 1024px) {
    .functionality-row-three {
        grid-template-columns: 1fr;
    }
}

.functionality-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.functionality-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.functionality-category-card .functionality-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.functionality-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.functionality-category-card .functionality-item {
    padding: 12px 16px;
    gap: 12px;
    font-size: 0.9rem;
}

.functionality-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.functionality-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.functionality-item span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.functionality-category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.functionality-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.functionality-category-card:hover::before {
    opacity: 1;
}

.functionality-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.functionality-category {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.functionality-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.functionality-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
}

.functionality-category-title i {
    font-size: 1.2rem;
}

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

@media (max-width: 600px) {
    .functionality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .functionality-category-card .functionality-list {
        grid-template-columns: 1fr;
    }
}

.product-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    text-decoration: none;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
}

.pricing-button i {
    transition: transform 0.3s ease;
}

.pricing-button:hover i {
    transform: translateX(5px);
}

.description-section {
    margin-top: 50px;
}

.description-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    gap: 25px;
}

.description-icon {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.tick-icon {
    width: 29px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(67%) saturate(5000%) hue-rotate(230deg) brightness(100%) contrast(100%);
}

.description-content {
    flex: 1;
}

.description-content h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.description-content h3:last-child {
    margin-bottom: 0;
}

/* Screenshots Section */
.screenshots-section {
    margin-top: 40px;
}

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

.screenshot-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4), 0 0 30px rgba(129, 140, 248, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.screenshot-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.screenshot-item:hover .screenshot-image {
    transform: scale(1.05);
}

/* Screenshot Modal */
.screenshot-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.screenshot-modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.screenshot-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.screenshot-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.screenshot-modal-close:active {
    transform: rotate(90deg) scale(0.9);
}

/* Characteristics Section */
.characteristics-section {
    margin-top: 60px;
}

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

.characteristic-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.characteristic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.characteristic-item:hover::before {
    opacity: 1;
}

.characteristic-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4), 0 0 30px rgba(129, 140, 248, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.characteristic-icon {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.characteristic-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.characteristic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.characteristic-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.characteristic-list li i {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-light);
}

@media (max-width: 900px) {
    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .description-card {
        flex-direction: column;
    }
    
    .description-icon {
        flex-direction: row;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-divider {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 1rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-divider i { color: var(--primary); margin-right: 6px; }

/* ─── Оплата с баланса (checkout card) ─── */
.balance-checkout {
    gap: 0;
}

.balance-buy-section {
    width: 100%;
}

.balance-checkout-card {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.75) 100%);
    border: 1px solid rgba(99, 102, 241, 0.28);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.balance-checkout-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.balance-checkout-header-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #c7d2fe;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(129, 140, 248, 0.35);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.balance-checkout-header-text h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.balance-checkout-header-text p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.balance-wallet-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.balance-wallet-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.balance-wallet-value {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.balance-wallet-value small {
    font-size: 1rem;
    font-weight: 600;
    color: #a5b4fc;
}

.balance-wallet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.balance-wallet-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.balance-wallet-pill:hover {
    color: #fff;
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(99, 102, 241, 0.12);
}

.balance-wallet-pill-accent {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.balance-wallet-pill-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
    color: #fff;
}

.balance-login-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.balance-login-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.45);
    color: #fff;
}

.balance-tariffs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.balance-tariffs-preview .balance-tariff {
    pointer-events: none;
    opacity: 0.55;
}

.balance-tariff {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    background: rgba(15, 23, 42, 0.65);
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.balance-tariff:hover:not(.balance-tariff-disabled):not(.is-loading) {
    transform: translateY(-4px);
    border-color: rgba(129, 140, 248, 0.55);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.22);
    background: rgba(30, 27, 75, 0.85);
}

.balance-tariff:nth-child(2) {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, rgba(15, 23, 42, 0.7) 100%);
}

.balance-tariff:nth-child(2):hover:not(.balance-tariff-insufficient) {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
}

.balance-tariff-insufficient {
    opacity: 0.72;
}

.balance-tariff-insufficient .balance-tariff-action {
    color: #f87171;
}

.balance-tariff-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.balance-tariff-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.15);
}

.balance-tariff-period {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.balance-tariff-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.balance-tariff-price small {
    font-size: 0.95rem;
    font-weight: 600;
    color: #a5b4fc;
}

.balance-discount-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(52, 211, 153, 0.35);
    font-size: 0.88rem;
    color: #cbd5e1;
}

.balance-discount-bar i {
    color: #34d399;
    font-size: 1rem;
}

.balance-discount-bar strong {
    color: #6ee7b7;
}

.balance-tariff-price-discounted {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.balance-price-old {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.75);
    text-decoration: line-through;
}

.balance-price-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.balance-price-new small {
    font-size: 0.95rem;
    font-weight: 600;
    color: #a5b4fc;
}

.balance-price-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.balance-tariff-action {
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 700;
    color: #34d399;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.balance-tariff.is-loading {
    pointer-events: none;
    opacity: 0.85;
}

.balance-empty-hint {
    text-align: center;
    color: var(--text-secondary);
    margin: 0;
    padding: 1rem;
}

@media (max-width: 640px) {
    .balance-tariffs {
        grid-template-columns: 1fr;
    }

    .balance-wallet-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .balance-wallet-actions {
        justify-content: stretch;
    }

    .balance-wallet-pill {
        flex: 1;
        justify-content: center;
    }
}

.balance-hint {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: center;
}

.balance-hint a { color: var(--primary-light); }

.btn-balance-buy {
    cursor: pointer;
}

.pricing-button-alt {
    opacity: 0.85;
    font-size: 0.95rem;
}

/* Модалка покупки */
.purchase-result-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.purchase-result-modal.open {
    display: flex;
}

.purchase-result-card {
    width: min(480px, 100%);
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(30, 27, 75, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.5rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.purchase-result-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
}

.purchase-result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.purchase-result-icon.success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.purchase-result-icon.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.purchase-result-icon.confirm {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
}

.purchase-confirm-lead {
    margin: 0 0 0.35rem;
    color: var(--text-secondary);
}

.purchase-confirm-product {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.purchase-confirm-period {
    margin: 0 0 1rem;
    color: var(--text-secondary);
}

.purchase-confirm-period strong {
    color: #c4b5fd;
}

.purchase-confirm-price {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.purchase-confirm-price strong {
    color: #34d399;
    font-size: 1.1rem;
}

.purchase-confirm-old {
    text-decoration: line-through;
    opacity: 0.55;
    margin-right: 0.35rem;
}

.purchase-confirm-discount {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    font-size: 0.8rem;
    font-weight: 700;
}

.purchase-result-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #fff;
}

.purchase-result-message {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    line-height: 1.5;
}

.purchase-topup-lead {
    margin: 0 0 12px;
    color: #cbd5e1;
}

.purchase-topup-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 14px;
}

.purchase-topup-stats div {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.12);
    text-align: center;
}

.purchase-topup-stats span {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 4px;
}

.purchase-topup-stats strong {
    color: #e2e8f0;
    font-size: 0.95rem;
}

.purchase-topup-shortage {
    border-color: rgba(248, 113, 113, 0.35) !important;
    background: rgba(248, 113, 113, 0.08) !important;
}

.purchase-topup-shortage strong {
    color: #fca5a5 !important;
}

.purchase-topup-hint {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
}

.balance-tariff-topup {
    cursor: pointer;
}

.balance-tariff-topup:hover {
    border-color: rgba(251, 191, 36, 0.45) !important;
}

.balance-tariff-topup .balance-tariff-action {
    color: #fbbf24;
}

@media (max-width: 640px) {
    .purchase-topup-stats {
        grid-template-columns: 1fr;
    }
}

.purchase-result-key-wrap {
    text-align: left;
    margin-bottom: 1.25rem;
}

.purchase-result-key-wrap label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.purchase-result-key-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.purchase-result-key-row code {
    flex: 1;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    font-size: 0.82rem;
    word-break: break-all;
    text-align: left;
}

.purchase-copy-key,
.purchase-copy-gift {
    width: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    cursor: pointer;
}

.purchase-copy-gift {
    background: rgba(16, 185, 129, 0.25);
    color: #6ee7b7;
}

.purchase-result-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.purchase-result-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    text-decoration: none;
}

/* ═══ Unified product page theme ═══ */
.page-product {
    --product-accent: #6366f1;
    --product-accent-dim: rgba(99, 102, 241, 0.15);
    --product-glow: rgba(99, 102, 241, 0.35);
    --chams-accent: var(--product-accent);
    --chams-accent-dim: var(--product-accent-dim);
    --chams-glow: var(--product-glow);
}

.page-rust { --product-accent: #cd412b; --product-accent-dim: rgba(205, 65, 43, 0.15); --product-glow: rgba(205, 65, 43, 0.35); }
.page-rust-chams { --product-accent: #22d3ee; --product-accent-dim: rgba(34, 211, 238, 0.15); --product-glow: rgba(34, 211, 238, 0.35); }
.page-abi { --product-accent: #8b5cf6; --product-accent-dim: rgba(139, 92, 246, 0.15); --product-glow: rgba(139, 92, 246, 0.35); }
.page-warface { --product-accent: #3b82f6; --product-accent-dim: rgba(59, 130, 246, 0.15); --product-glow: rgba(59, 130, 246, 0.35); }
.page-apex { --product-accent: #ef4444; --product-accent-dim: rgba(239, 68, 68, 0.15); --product-glow: rgba(239, 68, 68, 0.35); }
.page-dayz { --product-accent: #22c55e; --product-accent-dim: rgba(34, 197, 94, 0.15); --product-glow: rgba(34, 197, 94, 0.35); }
.page-marvel { --product-accent: #f97316; --product-accent-dim: rgba(249, 115, 22, 0.15); --product-glow: rgba(249, 115, 22, 0.35); }
.page-squad { --product-accent: #06b6d4; --product-accent-dim: rgba(6, 182, 212, 0.15); --product-glow: rgba(6, 182, 212, 0.35); }
.page-fortnite { --product-accent: #a855f7; --product-accent-dim: rgba(168, 85, 247, 0.15); --product-glow: rgba(168, 85, 247, 0.35); }
.page-pubg { --product-accent: #f59e0b; --product-accent-dim: rgba(245, 158, 11, 0.15); --product-glow: rgba(245, 158, 11, 0.35); }

.page-product .orb-1 {
    background: radial-gradient(circle, color-mix(in srgb, var(--product-accent) 25%, transparent) 0%, transparent 70%);
}

.page-product .orb-2 {
    background: radial-gradient(circle, color-mix(in srgb, var(--product-accent) 20%, transparent) 0%, transparent 70%);
}

/* product-* aliases for unified layout */
.product-hero,
.chams-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-hero-visual,
.chams-hero-visual { position: relative; }

.product-status-badge,
.chams-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.product-status-badge::before,
.chams-status-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px #34d399;
    animation: pulse 2s ease-in-out infinite;
}

.product-hero-image-wrap,
.chams-hero-image-wrap {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 2px solid color-mix(in srgb, var(--product-accent) 25%, transparent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 48px var(--product-glow);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.product-hero-image-wrap:hover,
.chams-hero-image-wrap:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--product-accent) 55%, transparent);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 64px var(--product-glow);
}

.product-hero-image-wrap img,
.chams-hero-image-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.product-hero-zoom,
.chams-hero-zoom {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
}

.product-hero-tags,
.chams-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.product-tag,
.chams-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-tag-accent,
.chams-tag-accent {
    color: var(--product-accent);
    border-color: color-mix(in srgb, var(--product-accent) 35%, transparent);
    background: var(--product-accent-dim);
}

.product-back-link,
.chams-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s;
}

.product-back-link:hover,
.chams-back-link:hover {
    color: var(--product-accent);
    border-color: color-mix(in srgb, var(--product-accent) 35%, transparent);
    transform: translateX(-4px);
}

.product-hero-title,
.chams-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: #fff;
}

.product-hero-title span,
.chams-hero-title span {
    background: linear-gradient(135deg, var(--product-accent), color-mix(in srgb, var(--product-accent) 60%, #fff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero-sub,
.chams-hero-sub {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 1rem;
    max-width: 440px;
}

.product-hero-price,
.chams-hero-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

.product-hero-price strong,
.chams-hero-price strong {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
}

.product-trust-chips,
.chams-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-trust-chips li,
.chams-trust-chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-trust-chips li i,
.chams-trust-chips li i {
    color: var(--product-accent);
    font-size: 0.72rem;
}

.product-checkout-wrap,
.chams-checkout-wrap { margin-bottom: 2.75rem; }

.product-checkout-bar,
.chams-checkout-bar {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), color-mix(in srgb, var(--product-accent) 12%, rgba(8, 15, 30, 0.35)));
    border: 1px solid color-mix(in srgb, var(--product-accent) 22%, transparent);
    border-radius: 18px;
    padding: 1rem 1.15rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.product-section-title,
.chams-section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-section-title i,
.chams-section-title i { color: var(--product-accent); }

.product-gallery,
.chams-gallery { margin-bottom: 3.5rem; }

.product-gallery-grid,
.chams-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.product-gallery-main,
.product-gallery-thumb,
.chams-gallery-main,
.chams-gallery-thumb {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.3);
}

.product-gallery-main:hover,
.product-gallery-thumb:hover,
.chams-gallery-main:hover,
.chams-gallery-thumb:hover {
    border-color: color-mix(in srgb, var(--product-accent) 45%, transparent);
    box-shadow: 0 12px 40px var(--product-glow);
}

.product-gallery-main img,
.product-gallery-thumb img,
.chams-gallery-main img,
.chams-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-gallery-main img,
.chams-gallery-main img {
    min-height: 220px;
}

.product-gallery-main,
.chams-gallery-main {
    aspect-ratio: 16 / 9;
    max-height: min(52vh, 520px);
    width: 100%;
}

.product-gallery-thumb,
.chams-gallery-thumb {
    aspect-ratio: 16 / 10;
    min-height: 0;
}

.product-gallery-side,
.chams-gallery-side {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 168px), 1fr));
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .product-gallery-side,
    .chams-gallery-side {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (min-width: 960px) {
    .product-gallery-side,
    .chams-gallery-side {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-product .functionality-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.15rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.page-product .functionality-section > .product-section-title,
.page-product .functionality-section > .chams-section-title,
.page-product .functionality-section > .section-title {
    grid-column: 1 / -1;
    margin-bottom: 0.35rem;
}

.page-product .functionality-row-three,
.page-product .functionality-row-centered,
.page-product .functionality-grid {
    display: contents;
}

.page-product .functionality-row-three .functionality-card,
.page-product .functionality-row-centered .functionality-card,
.page-product .functionality-grid .functionality-card {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 1.2rem 1.15rem;
    height: 100%;
    align-self: stretch;
}

.page-product .functionality-row-three .functionality-card {
    margin-bottom: 0;
}

.page-product .functionality-list {
    gap: 0.5rem;
}

.page-product .functionality-item {
    padding: 0.65rem 0.85rem;
    gap: 10px;
}

.page-product .functionality-item span {
    font-size: 0.88rem;
    line-height: 1.45;
}

.page-product .functionality-section > .functionality-card {
    grid-column: 1 / -1;
    max-width: min(520px, 100%);
    justify-self: center;
    width: 100%;
}

.product-checkout-wrap .share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #94a3b8;
}

.product-checkout-wrap .share-buttons .share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.product-checkout-wrap .share-buttons .share-button:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--product-accent) 40%, transparent);
}


.page-product .functionality-card {
    border-color: color-mix(in srgb, var(--product-accent) 15%, transparent);
}

.page-product .functionality-card:hover {
    border-color: color-mix(in srgb, var(--product-accent) 45%, transparent);
    box-shadow: 0 12px 36px var(--product-glow);
}

.page-product .functionality-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px;
    padding: 0;
}

.page-product .functionality-item {
    width: 100%;
}

.page-product .functionality-card h3 i,
.page-product .functionality-item i { color: var(--product-accent); }

.product-specs,
.chams-specs { margin: 3.5rem 0; }

.product-specs-grid,
.chams-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.product-spec-chip,
.chams-spec-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 1.15rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s;
}

.product-spec-chip:hover,
.chams-spec-chip:hover {
    border-color: color-mix(in srgb, var(--product-accent) 35%, transparent);
}

.product-spec-chip i,
.chams-spec-chip i {
    font-size: 1.35rem;
    color: var(--product-accent);
}

.product-spec-chip strong,
.chams-spec-chip strong { font-size: 0.88rem; color: #f1f5f9; }

.product-spec-chip span,
.chams-spec-chip span { font-size: 0.78rem; color: #64748b; }

.product-faq,
.chams-faq {
    margin: 3.5rem auto;
    max-width: 720px;
}

.product-faq-list,
.chams-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-faq-item,
.chams-faq-item {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.product-faq-q,
.chams-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1rem 1.15rem;
    border: none;
    background: none;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.product-faq-q i,
.chams-faq-q i {
    color: var(--product-accent);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.product-faq-item.open .product-faq-q i,
.chams-faq-item.open .chams-faq-q i { transform: rotate(180deg); }

.product-faq-a,
.chams-faq-a {
    display: none;
    padding: 0 1.15rem 1rem;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.55;
}

.product-faq-item.open .product-faq-a,
.chams-faq-item.open .chams-faq-a { display: block; }

.product-faq-a a { color: var(--product-accent); }

.product-related,
.chams-related { margin: 3.5rem 0 1rem; }

.product-related-grid,
.chams-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.product-related-card,
.chams-related-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s;
}

.product-related-card:hover,
.chams-related-card:hover {
    border-color: color-mix(in srgb, var(--product-accent) 40%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px var(--product-glow);
}

.product-related-card img,
.chams-related-card img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-related-card strong,
.chams-related-card strong {
    display: block;
    font-size: 0.92rem;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.product-related-card span,
.chams-related-card span { font-size: 0.78rem; color: #64748b; }

.product-sticky-cta,
.chams-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(8, 15, 30, 0.95);
    border-top: 1px solid color-mix(in srgb, var(--product-accent) 30%, transparent);
    backdrop-filter: blur(16px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.product-sticky-cta[hidden],
.chams-sticky-cta[hidden] { display: none !important; }

.product-sticky-info strong,
.chams-sticky-info strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

.product-sticky-info span,
.chams-sticky-info span {
    font-size: 0.8rem;
    color: var(--product-accent);
    font-weight: 700;
}

.product-sticky-btn,
.chams-sticky-btn {
    flex-shrink: 0;
    padding: 12px 22px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #0f172a;
    background: linear-gradient(135deg, var(--product-accent), color-mix(in srgb, var(--product-accent) 60%, #fff));
    cursor: pointer;
    box-shadow: 0 4px 20px var(--product-glow);
}

.page-product .balance-tariff:hover:not(.balance-tariff-disabled):not(.is-loading) {
    border-color: color-mix(in srgb, var(--product-accent) 55%, transparent);
    box-shadow: 0 8px 28px var(--product-glow);
}

.page-product .balance-tariff:nth-child(2) {
    border-color: color-mix(in srgb, var(--product-accent) 45%, transparent);
    background: linear-gradient(160deg, var(--product-accent-dim), rgba(15, 23, 42, 0.6));
}

.page-product .balance-tariff-icon,
.page-product .balance-checkout-header-icon { color: var(--product-accent); }

.page-product .balance-checkout-header-icon {
    background: linear-gradient(135deg, var(--product-accent-dim), rgba(15, 23, 42, 0.5));
    border-color: color-mix(in srgb, var(--product-accent) 35%, transparent);
}

.page-product .pricing-button-alt {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid color-mix(in srgb, var(--product-accent) 25%, transparent);
    box-shadow: none;
}

.page-product .pricing-button-alt:hover {
    background: var(--product-accent-dim);
    border-color: color-mix(in srgb, var(--product-accent) 50%, transparent);
    box-shadow: 0 8px 24px var(--product-glow);
}

.page-product .product-breadcrumbs a:hover { color: var(--product-accent); }

.page-product .checkout-compact .external-pay-compact {
    border-left-color: color-mix(in srgb, var(--product-accent) 15%, transparent);
}

.page-product .external-pay-chip {
    border-color: color-mix(in srgb, var(--product-accent) 22%, transparent);
}

.page-product .external-pay-chip:hover {
    border-color: color-mix(in srgb, var(--product-accent) 50%, transparent);
    background: var(--product-accent-dim);
}

@media (max-width: 960px) {
    .product-hero,
    .chams-hero {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .checkout-compact {
        grid-template-columns: 1fr;
    }

    .checkout-compact .external-pay-compact {
        grid-column: 1;
        grid-row: auto;
        padding-left: 0;
        padding-top: 0.75rem;
        border-left: none;
        border-top: 1px solid color-mix(in srgb, var(--product-accent, #6366f1) 15%, transparent);
        flex-direction: row;
    }

    .checkout-compact .external-pay-chip {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .product-gallery-grid,
    .chams-gallery-grid { grid-template-columns: 1fr; }

    .product-gallery-side,
    .chams-gallery-side {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-hero-sub,
    .chams-hero-sub { max-width: none; }
}

@media (min-width: 961px) {
    .product-sticky-cta,
    .chams-sticky-cta { display: none !important; }
}

@media (max-width: 640px) {
    .product-page { padding: 6.5rem 1rem 5rem; padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }

    .product-breadcrumbs { font-size: 0.78rem; margin-bottom: 1.25rem; }

    .product-hero-title,
    .chams-hero-title { font-size: clamp(1.65rem, 7vw, 2.25rem); }

    .product-specs-grid,
    .chams-specs-grid { grid-template-columns: repeat(2, 1fr); }

    .product-related-grid,
    .chams-related-grid { grid-template-columns: 1fr; }

    .checkout-compact .balance-tariffs { grid-template-columns: 1fr 1fr; }

    .product-section-title,
    .chams-section-title { font-size: 1.35rem; }

    .checkout-compact .external-pay-compact {
        flex-direction: column;
    }
}

.product-page {
    padding: 7rem 1.5rem 5rem;
}

.product-page-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.product-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumbs a:hover {
    color: var(--product-accent);
}

.product-breadcrumbs i.fa-chevron-right {
    font-size: 0.65rem;
    opacity: 0.5;
}

.product-breadcrumbs span[aria-current] {
    color: #e2e8f0;
    font-weight: 600;
}

/* Checkout bar — компактный режим */
.checkout-compact {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 240px);
    gap: 1rem 1.25rem;
    align-items: start;
}

.checkout-compact .balance-buy-section {
    grid-column: 1;
    min-width: 0;
}

.checkout-compact .external-pay-compact {
    grid-column: 2;
    grid-row: 1 / span 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 1.15rem;
    border-left: 1px solid rgba(34, 211, 238, 0.15);
}

.checkout-compact .balance-checkout-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.checkout-compact .balance-wallet-bar-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0.55rem 0.85rem;
    margin-bottom: 0.65rem;
    border-radius: 12px;
}

.checkout-compact .balance-wallet-value {
    font-size: 1.1rem;
}

.checkout-compact .balance-wallet-pill {
    padding: 8px 10px;
    min-width: 36px;
    justify-content: center;
}

.checkout-compact .balance-discount-bar {
    padding: 6px 10px;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
}

.checkout-compact .balance-tariffs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkout-compact .balance-tariff {
    padding: 0.65rem 0.4rem 0.55rem;
}

.checkout-compact .balance-tariff-period {
    font-size: 0.82rem;
    margin-bottom: 2px;
}

.checkout-compact .balance-tariff-price {
    font-size: 1.15rem;
}

.checkout-compact .balance-tariff-action {
    font-size: 0.72rem;
    margin-top: 4px;
    padding-top: 6px;
}

.checkout-compact .balance-login-cta-compact {
    padding: 10px 14px;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
}

.checkout-compact .external-divider {
    margin: 0 0 4px;
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}

.external-pay-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: #cbd5e1;
    border: 1px solid rgba(34, 211, 238, 0.22);
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.2s;
}

.external-pay-chip:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-1px);
}

.external-pay-chip-label {
    font-weight: 500;
    color: #94a3b8;
}

.external-pay-chip strong {
    color: #fff;
    font-weight: 800;
}

.external-pay-chip i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.screenshot-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.screenshot-modal-nav:hover {
    background: rgba(34, 211, 238, 0.35);
}

.screenshot-modal-prev { left: 20px; }
.screenshot-modal-next { right: 20px; }

.screenshot-modal-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(0, 0, 0, 0.6);
}

/* ─── Mobile: game indexes + product sections ─── */
@media (max-width: 768px) {
    .page-main[style*="padding"] {
        padding: 6.5rem 1rem 3rem !important;
        padding-bottom: calc(3rem + env(safe-area-inset-bottom)) !important;
    }

    .logo-container .main-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .page-product .functionality-section {
        grid-template-columns: 1fr;
    }

    .functionality-row-three {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .screenshot-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .screenshot-modal-prev { left: 8px; }
    .screenshot-modal-next { right: 8px; }
}

/* ─── Rust V2 — features showcase ─── */
.page-product .functionality-section.v2-features-section {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.v2-features-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.15rem;
    margin-top: 1.5rem;
}

.v2-features-layout > .v2-feature-block:not(.v2-feature-block--wide):not(.v2-feature-block--compact) {
    grid-column: span 3;
}

.v2-feature-block--wide {
    grid-column: 1 / -1;
}

.v2-feature-block--compact {
    grid-column: span 2;
}

.v2-feature-block {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 1.35rem 1.4rem 1.4rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-feature-block:hover {
    border-color: color-mix(in srgb, var(--product-accent) 50%, transparent);
    box-shadow: 0 14px 36px var(--product-glow);
    transform: translateY(-2px);
}

.v2-feature-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.v2-feature-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--product-accent-dim);
    color: var(--product-accent);
    font-size: 1rem;
}

.v2-feature-head h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.02em;
}

.v2-feature-head p {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.45;
}

.v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 0.55rem;
}

.v2-feat {
    padding: 0.65rem 0.75rem;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    border-left: 2px solid var(--product-accent);
    transition: background 0.2s ease;
}

.v2-feat:hover {
    background: rgba(0, 0, 0, 0.32);
}

.v2-feat strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.3;
}

.v2-feat span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.35;
}

.v2-world-groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.v2-world-group h4 {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.v2-world-group h4 i {
    color: var(--product-accent);
    font-size: 0.78rem;
}

.v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.v2-tag {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid color-mix(in srgb, var(--product-accent) 30%, transparent);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.v2-tag:hover {
    background: var(--product-accent-dim);
    border-color: color-mix(in srgb, var(--product-accent) 55%, transparent);
}

.v2-compact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.v2-compact-list li {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.45;
    padding: 0.55rem 0.7rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.v2-compact-list strong {
    color: #e2e8f0;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .v2-world-groups {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
}

@media (max-width: 900px) {
    .v2-features-layout,
    .v2-features-layout > .v2-feature-block:not(.v2-feature-block--wide):not(.v2-feature-block--compact),
    .v2-feature-block--wide,
    .v2-feature-block--compact {
        grid-column: 1 / -1;
    }

    .v2-features-layout {
        grid-template-columns: 1fr;
    }

    .v2-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .v2-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══ Game hub (catalog pages) ═══ */
.page-game-hub {
    --product-accent: #6366f1;
    --product-accent-dim: rgba(99, 102, 241, 0.12);
    --product-glow: rgba(99, 102, 241, 0.35);
}

.page-game-hub.page-rust {
    --product-accent: #cd412b;
    --product-accent-dim: rgba(205, 65, 43, 0.14);
    --product-glow: rgba(205, 65, 43, 0.4);
}

.page-game-hub.page-abi { --product-accent: #8b5cf6; --product-accent-dim: rgba(139, 92, 246, 0.14); --product-glow: rgba(139, 92, 246, 0.35); }
.page-game-hub.page-warface { --product-accent: #3b82f6; --product-accent-dim: rgba(59, 130, 246, 0.14); --product-glow: rgba(59, 130, 246, 0.35); }
.page-game-hub.page-apex { --product-accent: #ef4444; --product-accent-dim: rgba(239, 68, 68, 0.14); --product-glow: rgba(239, 68, 68, 0.35); }
.page-game-hub.page-dayz { --product-accent: #22c55e; --product-accent-dim: rgba(34, 197, 94, 0.14); --product-glow: rgba(34, 197, 94, 0.35); }
.page-game-hub.page-marvel { --product-accent: #f97316; --product-accent-dim: rgba(249, 115, 22, 0.14); --product-glow: rgba(249, 115, 22, 0.35); }
.page-game-hub.page-squad { --product-accent: #06b6d4; --product-accent-dim: rgba(6, 182, 212, 0.14); --product-glow: rgba(6, 182, 212, 0.35); }
.page-game-hub.page-fortnite { --product-accent: #a855f7; --product-accent-dim: rgba(168, 85, 247, 0.14); --product-glow: rgba(168, 85, 247, 0.35); }
.page-game-hub.page-pubg { --product-accent: #f59e0b; --product-accent-dim: rgba(245, 158, 11, 0.14); --product-glow: rgba(245, 158, 11, 0.35); }

.page-game-hub .orb-1 {
    background: radial-gradient(circle, color-mix(in srgb, var(--product-accent) 28%, transparent) 0%, transparent 70%);
}

.page-game-hub .orb-2 {
    background: radial-gradient(circle, color-mix(in srgb, var(--product-accent) 18%, transparent) 0%, transparent 70%);
}

.game-hub-main {
    padding: 7rem 1.5rem 4rem;
}

.game-hub-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.game-hub-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.game-hub-breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}

.game-hub-breadcrumbs a:hover {
    color: var(--product-accent);
}

.game-hub-breadcrumbs-sep {
    opacity: 0.45;
    font-size: 0.65rem;
}

.game-hub-breadcrumbs-current {
    color: var(--product-accent);
    font-weight: 600;
}

.game-hub-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 2.25rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.game-hub-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 50%, var(--product-accent-dim), transparent 60%);
    pointer-events: none;
}

.game-hub-hero-content {
    position: relative;
    z-index: 1;
}

.game-hub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--product-accent);
    background: var(--product-accent-dim);
    border: 1px solid color-mix(in srgb, var(--product-accent) 35%, transparent);
    margin-bottom: 1rem;
}

.game-hub-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 1rem;
    color: var(--text-main);
}

.game-hub-title span {
    color: var(--product-accent);
    text-shadow: 0 0 40px var(--product-glow);
}

.game-hub-lead {
    margin: 0 0 1.35rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-light);
    max-width: 36rem;
}

.game-hub-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}

.game-hub-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.game-hub-trust i {
    color: var(--product-accent);
}

.game-hub-hero-visual {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.game-hub-hero-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 50%, var(--product-glow), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.game-hub-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.game-hub-hero-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.45);
    backdrop-filter: blur(8px);
}

.game-hub-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.75rem;
}

.game-hub-stat {
    padding: 1.15rem 1rem;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s, transform 0.25s;
}

.game-hub-stat:hover {
    border-color: color-mix(in srgb, var(--product-accent) 40%, transparent);
    transform: translateY(-2px);
}

.game-hub-stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--product-accent);
    margin-bottom: 0.25rem;
}

.game-hub-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.game-hub-section-head {
    margin-bottom: 1.5rem;
}

.game-hub-section-head h2 {
    margin: 0 0 0.35rem;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-main);
}

.game-hub-section-head p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.game-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 0;
}

.game-hub-grid--solo {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
}

.game-hub-grid--solo .game-hub-card--featured {
    grid-column: span 1;
}

.game-hub-grid--duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.game-hub-grid--duo .game-hub-card--featured {
    grid-column: span 1;
}

.game-hub-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
}

.game-hub-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--product-accent) 50%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px var(--product-glow);
}

.game-hub-card--featured {
    grid-column: span 2;
    flex-direction: row;
}

.game-hub-card--featured .game-hub-card-media {
    flex: 1.15;
    min-height: 220px;
    aspect-ratio: auto;
}

.game-hub-card--featured .game-hub-card-body {
    flex: 1;
    justify-content: center;
    padding: 1.75rem 1.5rem;
}

.game-hub-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.game-hub-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.game-hub-card:hover .game-hub-card-img {
    transform: scale(1.06);
}

.game-hub-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.game-hub-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, var(--product-accent), color-mix(in srgb, var(--product-accent) 70%, #000));
    box-shadow: 0 4px 14px var(--product-glow);
}

.game-hub-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.15rem 1.25rem 1.25rem;
    flex: 1;
}

.game-hub-card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.game-hub-card-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    flex: 1;
}

.game-hub-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.game-hub-card-tags span {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--product-accent);
    background: var(--product-accent-dim);
    border: 1px solid color-mix(in srgb, var(--product-accent) 25%, transparent);
}

.game-hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.game-hub-card-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--product-accent);
}

.game-hub-card-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s, gap 0.2s;
}

.game-hub-card:hover .game-hub-card-cta {
    color: var(--product-accent);
    gap: 0.55rem;
}

.game-hub-why {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.game-hub-why-title {
    text-align: center;
    margin: 0 0 1.75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.game-hub-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.game-hub-why-card {
    padding: 1.5rem 1.35rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s;
}

.game-hub-why-card:hover {
    border-color: color-mix(in srgb, var(--product-accent) 35%, transparent);
}

.game-hub-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--product-accent);
    background: var(--product-accent-dim);
    margin-bottom: 1rem;
}

.game-hub-why-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.game-hub-why-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .game-hub-hero {
        grid-template-columns: 1fr;
        padding: 1.75rem;
    }

    .game-hub-hero-visual {
        max-height: 280px;
    }

    .game-hub-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-hub-grid--duo,
    .game-hub-grid--solo {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .game-hub-grid--duo .game-hub-card--featured,
    .game-hub-grid--solo .game-hub-card--featured {
        grid-column: span 1;
    }

    .game-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-hub-card--featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .game-hub-why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .game-hub-main {
        padding: 6.5rem 1rem 3rem;
    }

    .game-hub-grid {
        grid-template-columns: 1fr;
    }

    .game-hub-card--featured {
        grid-column: span 1;
    }

    .game-hub-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .game-hub-stat-value {
        font-size: 1.1rem;
    }
}
