:root {
    --primary-color: #ff7f50;
    --secondary-color: #ff9f7f;
    --success-color: #32e6af;
    --info-color: #36b9cc;
    --warning-color: #f6c23e;
    --danger-color: #ff4b4b;
    --light-color: #f8f9fc;
    --dark-color: #1e2330;
    --darker-color: #171b25;
    --text-color: #e1e2f6;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #ff7f50 0%, #ff6b3d 100%);
    --gradient-secondary: linear-gradient(135deg, #ff9f7f 0%, #ff8b66 100%);
    --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --header-height: 80px;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --orange-primary: #ff7f50;
    --orange-secondary: #ff6b2b;
    
    --bg-main: #242936;
    --bg-card: #2a303c;
    --bg-hover: #313744;
    
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    padding-top: var(--header-height);
    min-height: 100vh;
    background: linear-gradient(
        45deg,
        #1a1b1f,
        #251f1e,
        #2a1f1b,
        #1f1a19
    );
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 127, 80, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 127, 80, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 127, 80, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.decorative-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 127, 80, 0.15), transparent);
    box-shadow: 0 0 15px rgba(255, 127, 80, 0.1);
}

.line-1 {
    top: 20%;
    left: -10%;
    width: 120%;
    height: 2px;
    transform: rotate(-15deg);
}

.line-2 {
    top: 60%;
    left: -10%;
    width: 120%;
    height: 2px;
    transform: rotate(10deg);
}

.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.shape {
    position: absolute;
    border: 1px solid rgba(255, 127, 80, 0.15);
    opacity: 0.7;
    transition: transform 0.2s ease-out;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.1);
}

.circle {
    border-radius: 50%;
}

.shape-1 {
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 127, 80, 0.08) 0%, transparent 70%);
    animation: rotateShape 30s linear infinite;
    transform: translateZ(20px);
}

.shape-2 {
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    transform: rotate(45deg) translateZ(40px);
    border: 2px solid rgba(255, 127, 80, 0.1);
    background: linear-gradient(45deg, rgba(255, 127, 80, 0.05), transparent);
    animation: pulseShape 15s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    left: 20%;
    width: 100px;
    height: 100px;
    border-radius: 30%;
    background: linear-gradient(45deg, rgba(255, 127, 80, 0.08), transparent);
    box-shadow: inset 0 0 20px rgba(255, 127, 80, 0.1);
    animation: floatShape 20s ease-in-out infinite;
    transform: translateZ(30px);
}

.parallax-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: transform;
}

.parallax-layer-1 {
    transform: translateZ(50px);
}

.parallax-layer-2 {
    transform: translateZ(25px);
}

.parallax-layer-3 {
    transform: translateZ(10px);
}

.glowing-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    transform-style: preserve-3d;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 127, 80, 0.4);
    border-radius: 50%;
    filter: blur(2px);
    box-shadow: 
        0 0 10px rgba(255, 127, 80, 0.4),
        0 0 20px rgba(255, 127, 80, 0.2),
        0 0 30px rgba(255, 127, 80, 0.1);
    transition: transform 0.2s ease-out;
}

.dot-1 { 
    top: 15%; 
    left: 25%; 
    animation: glowPulse 4s infinite;
    transform: translateZ(40px);
}

.dot-2 { 
    top: 45%; 
    right: 30%; 
    animation: glowPulse 6s infinite;
    transform: translateZ(20px);
}

.dot-3 { 
    bottom: 25%; 
    left: 40%; 
    animation: glowPulse 5s infinite;
    transform: translateZ(30px);
}

.dot-4 { 
    top: 75%; 
    right: 15%; 
    animation: glowPulse 7s infinite;
    transform: translateZ(15px);
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseShape {
    0% { 
        transform: scale(1) rotate(45deg); 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(255, 127, 80, 0.1);
    }
    50% { 
        transform: scale(1.2) rotate(45deg); 
        opacity: 0.5;
        box-shadow: 0 0 30px rgba(255, 127, 80, 0.2);
    }
    100% { 
        transform: scale(1) rotate(45deg); 
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(255, 127, 80, 0.1);
    }
}

@keyframes floatShape {
    0% { 
        transform: translateY(0) rotate(0deg);
        box-shadow: 0 0 20px rgba(255, 127, 80, 0.1);
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        box-shadow: 0 0 30px rgba(255, 127, 80, 0.2);
    }
    100% { 
        transform: translateY(0) rotate(360deg);
        box-shadow: 0 0 20px rgba(255, 127, 80, 0.1);
    }
}

@keyframes glowPulse {
    0% { 
        transform: scale(1); 
        opacity: 0.4;
        filter: blur(2px);
    }
    50% { 
        transform: scale(1.5); 
        opacity: 0.8;
        filter: blur(3px);
    }
    100% { 
        transform: scale(1); 
        opacity: 0.4;
        filter: blur(2px);
    }
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: linear-gradient(45deg, rgba(255, 127, 80, 0.15), rgba(255, 107, 43, 0.08));
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    box-shadow: 
        inset 0 0 20px rgba(255, 127, 80, 0.2),
        0 0 15px rgba(255, 127, 80, 0.1);
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation: floatingBubbles 25s linear infinite;
    animation-delay: 2s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation: floatingBubbles 20s linear infinite;
    animation-delay: 6s;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation: floatingBubbles 22s linear infinite;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 70%;
    animation: floatingBubbles 18s linear infinite;
    animation-delay: 8s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 90%;
    animation: floatingBubbles 24s linear infinite;
    animation-delay: 10s;
}

main {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.hero-title, .section-title {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
}

.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cheat-title, .game-title {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cheat-description, .card-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #8a93ff;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 4rem;
    margin: 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    position: relative;
}

/* Удаляем оранжевую линию */
.section-title::after {
    display: none;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: rgba(124, 105, 239, 0.3);
    transform: translateY(-50%);
}

.section-line::before {
    left: -40px;
}

.section-line::after {
    right: -40px;
}

/* Header Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(23, 25, 28, 0.95);
    backdrop-filter: blur(10px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 107, 43, 0.1);
    transition: all 0.3s ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar > .container {
    max-width: 1440px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    padding: 0;
    margin-right: 2rem;
}

.navbar-brand img {
    width: 36px;
    height: 36px;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand span {
    background: linear-gradient(135deg, #ff7f50, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-link i {
    font-size: 1.1em;
    color: #ff7f50;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 127, 80, 0.1);
}

.nav-link:hover i {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ff7f50;
    background: rgba(255, 127, 80, 0.1);
}

/* Dropdown styles */
.dropdown-menu {
    background: rgba(32, 34, 37, 0.98);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: #ff7f50;
    background: rgba(255, 127, 80, 0.1);
}

.dropdown-item i {
    font-size: 1.1em;
    color: #ff7f50;
    opacity: 0.8;
}

.dropdown-divider {
    border-color: rgba(255, 127, 80, 0.1);
    margin: 0.5rem 0;
}

/* Auth buttons */
.btn-outline-light {
    border-color: rgba(255, 127, 80, 0.2);
    color: var(--text-primary);
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-light:hover {
    background: rgba(255, 127, 80, 0.1);
    border-color: rgba(255, 127, 80, 0.3);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #ff7f50, #ff6b2b);
    border: none;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8f60, #ff7f50);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
}

.user-balance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.balance-label {
    color: var(--text-secondary);
}

.balance-value {
    color: #ff7f50;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    height: 100%;
}

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3px;
    transition: all 0.3s ease;
    width: 90px;
    height: 36px;
    margin: 0;
}

.language-switch {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.language-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4px;
    position: relative;
    z-index: 1;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.5;
    transition: all 0.3s ease;
    width: 38px;
    justify-content: center;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
}

.btn-outline-light,
.btn-primary {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        padding: 1rem 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(23, 25, 28, 0.98);
        padding: 1rem;
        display: none;
        border-bottom: 1px solid rgba(255, 127, 80, 0.1);
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem;
    }

    .nav-right {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline-light,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .language-selector {
        width: 100%;
        justify-content: center;
    }

    .user-menu {
        flex-direction: column;
        width: 100%;
    }

    .user-balance {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-collapse {
        display: flex !important;
    }
}

.navbar .btn {
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.navbar .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.navbar .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.hero-section {
    margin-bottom: 4rem;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    background: transparent;
}

.hero-section::before {
    display: none;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 127, 80, 0.15);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 127, 80, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    max-width: 800px;
}

.hero-description {
    font-size: 1.2rem;
    color: #a0a3bd;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.search-container {
    max-width: 500px;
    margin-bottom: 4rem;
}

.search-input-group {
    background: rgba(35, 39, 47, 0.8);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background: rgba(255, 127, 80, 0.15);
    border: 1px solid rgba(255, 127, 80, 0.2);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-submit:hover {
    background: var(--primary-color);
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
}

.feature-item {
    background: rgba(35, 39, 47, 0.6);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(35, 39, 47, 0.8);
    border-color: rgba(255, 127, 80, 0.2);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #a0a3bd;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
}

.stat-block {
    background: rgba(35, 39, 47, 0.6);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
    background: rgba(35, 39, 47, 0.8);
    border-color: rgba(255, 127, 80, 0.2);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.15);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .features-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-block {
        padding: 1.2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

.card, .cheat-card, .game-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--card-shadow);
}

.card:hover, .cheat-card:hover, .game-card:hover {
    background: var(--bg-hover);
    border-color: rgba(255, 127, 80, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.8), rgba(26, 26, 26, 0.95));
}

.card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: white;
}

.card-text {
    color: #c0c3d1;
    margin-bottom: 1.5rem;
}

.card .text-muted.small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    transition: var(--transition);
    cursor: pointer;
}

.game-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

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

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(23, 25, 35, 0.95), rgba(23, 25, 35, 0.4));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

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

.game-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.game-card:hover .game-title {
    transform: translateY(0);
}

.game-info {
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    transition-delay: 0.1s;
}

.game-card:hover .game-info {
    transform: translateY(0);
    opacity: 1;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.stat i {
    color: var(--primary-color);
}

.game-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(124, 105, 239, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.game-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

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

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(23, 25, 35, 0.98) 0%, rgba(23, 25, 35, 0.85) 40%, rgba(23, 25, 35, 0.4) 70%, rgba(23, 25, 35, 0.1) 100%);
    padding: 2.2rem;
    transition: var(--transition);
    border-top: 1px solid rgba(124, 105, 239, 0.08);
    backdrop-filter: blur(4px);
}

.game-card:hover .game-card-overlay {
    background: linear-gradient(to top, rgba(20, 21, 30, 0.92) 0%, rgba(20, 21, 30, 0.75) 50%, rgba(20, 21, 30, 0.5) 80%, rgba(20, 21, 30, 0.2) 100%);
}

.game-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.95;
    transform: translateY(5px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.game-card:hover .game-card-title {
    opacity: 1;
    transform: translateY(0);
}

.game-card-content {
    color: rgba(255, 255, 255, 0.9);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.game-card-content p {
    margin-bottom: 0.5rem;
}

.game-price {
    color: white;
}

.price-value {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.game-card:hover .game-card-content {
    max-height: 100px;
    opacity: 1;
}

.game-card .btn {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.game-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: white;
}

.badge.bg-success {
    background: #32e6af !important;
    color: #1e2030;
    font-weight: 700;
}

.badge.bg-warning {
    background: #f6c23e !important;
    color: #1e2030;
    font-weight: 700;
}

.badge.bg-danger {
    background: #ff4b4b !important;
    color: white;
    font-weight: 700;
}

.btn {
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(124, 105, 239, 0.25);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.4);
}

.btn-success {
    background: var(--gradient-secondary);
    border: none;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(50, 230, 175, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.footer {
    position: relative;
    z-index: 10;
    background: rgba(23, 25, 28, 0.95);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 127, 80, 0.1);
}

.footer-brand h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 127, 80, 0.1);
    color: var(--orange-primary);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.contact-info li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a:hover,
.contact-info li a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.contact-info li i {
    color: var(--orange-primary);
    font-size: 1.2rem;
}

.payment-methods {
    margin-top: 2rem;
}

.payment-methods h5 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-icons img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 1rem;
    }
    
    .navbar-dark .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #242736;
}

::-webkit-scrollbar-thumb {
    background: #353a52;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-dropdown::after {
    display: none;
}

.navbar-dark .navbar-nav .nav-dropdown:hover::after, 
.navbar-dark .navbar-nav .nav-dropdown.active::after {
    display: none;
}

.row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.col-lg-3, .col-md-6, .col-sm-6 {
    padding-right: 6px;
    padding-left: 6px;
}

@media (max-width: 767.98px) {
    .col-lg-3, .col-md-6, .col-sm-6 {
        padding-right: 4px;
        padding-left: 4px;
    }
    
    .row {
        margin-right: -4px;
        margin-left: -4px;
    }
    
    .game-card {
        margin-bottom: 10px;
    }
}

section:nth-of-type(2) .card {
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(94, 107, 255, 0.1);
}

section:nth-of-type(2) .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

section:nth-of-type(2) .card-img-top {
    height: 220px;
}

section:nth-of-type(2) .section-title::after {
    width: 80px;
    height: 5px;
}

.hero-section {
    margin-bottom: 3rem;
}

section.mb-5 {
    margin-bottom: 5rem !important;
}

.game-hero {
    padding: 3rem 0;
    background: linear-gradient(125deg, rgba(41, 45, 62, 0.8) 0%, rgba(26, 29, 41, 0.9) 100%);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.game-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(94, 107, 255, 0.2), transparent 70%),
                radial-gradient(ellipse at bottom left, rgba(50, 230, 175, 0.2), transparent 70%);
    z-index: 0;
}

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

.game-cover-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    background: rgba(94, 107, 255, 0.15);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.stat-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.stat-item strong {
    margin-left: 4px;
    color: var(--secondary-color);
}

.cheats-section {
    margin-bottom: 5rem;
}

.cheat-card {
    background: linear-gradient(145deg, rgba(46, 52, 64, 0.8), rgba(35, 39, 47, 0.9));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 127, 80, 0.1);
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
}

.cheat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 127, 80, 0.3);
    box-shadow: 0 15px 35px rgba(255, 127, 80, 0.2);
    background: linear-gradient(145deg, rgba(46, 52, 64, 0.9), rgba(35, 39, 47, 0.95));
}

.cheat-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.cheat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.cheat-card:hover .cheat-card-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.cheat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(35, 39, 47, 0) 0%,
        rgba(35, 39, 47, 0.8) 70%,
        rgba(35, 39, 47, 0.95) 100%
    );
    z-index: 1;
}

.cheat-content {
    padding: 1.8rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cheat-game {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 127, 80, 0.15);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 127, 80, 0.2);
    backdrop-filter: blur(4px);
    align-self: flex-start;
}

.cheat-title {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cheat-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 127, 80, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 127, 80, 0.15);
    margin-bottom: 1rem;
}

.rating-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.rating-stars {
    display: flex;
    gap: 0.3rem;
}

.rating-stars i {
    color: rgba(255, 127, 80, 0.2);
    font-size: 1.1rem;
}

.rating-stars i.filled {
    color: var(--primary-color);
}

.cheat-description {
    color: #c0c3d1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cheat-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 127, 80, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cheat-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 127, 80, 0.3);
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.7rem 1.4rem;
    background: rgba(255, 127, 80, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 127, 80, 0.2);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.btn-details:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(4px);
}

.cheat-status {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    background: rgba(35, 39, 47, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 127, 80, 0.2);
    backdrop-filter: blur(4px);
    font-weight: 600;
    font-size: 0.9rem;
    color: #32e6af;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cheat-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #32e6af;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(50, 230, 175, 0.5);
}

@media (max-width: 1400px) {
    .popular-cheats-section .row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .popular-cheats-section .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-cheats-section .row {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 0 1rem;
    }
    
    .popular-cheats-section .section-header {
        padding: 0 1rem;
    }
    
    .cheat-content {
        padding: 1.5rem;
    }
}

.why-choose-section {
    background: rgba(36, 39, 54, 0.5);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 5rem;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 127, 80, 0.1), transparent 70%),
                radial-gradient(ellipse at bottom left, rgba(255, 159, 127, 0.1), transparent 70%);
    z-index: 0;
}

.features-container {
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.2) 0%, rgba(255, 127, 80, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    margin-bottom: 5rem;
}

.custom-accordion {
    background: transparent;
    border: none;
}

.custom-accordion .accordion-item {
    background-color: #242736;
    border: 1px solid rgba(94, 107, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
    background-color: rgba(36, 39, 54, 0.8);
    color: white;
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(94, 107, 255, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.about-section + .cta-section {
    margin-top: 0;
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 4rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .team-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}


.reviews-page {
    min-height: calc(100vh - var(--header-height));
    padding: 3rem 0;
    background: var(--bg-dark);
}

.reviews-hero-content {
    position: sticky;
    top: 2rem;
    padding-right: 2rem;
}

.reviews-hero-content h1 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reviews-hero-content .hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-telegram, .btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-telegram {
    background: #27A7E7;
    color: white;
}

.btn-telegram:hover {
    background: #2194cf;
    color: white;
    transform: translateY(-2px);
}

.btn-discord {
    background: #7289DA;
    color: white;
}

.btn-discord:hover {
    background: #6277c4;
    color: white;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 127, 80, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.verified-badge i {
    font-size: 0.85rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .fa-star {
    color: rgba(255, 127, 80, 0.2);
    font-size: 1rem;
}

.review-rating .fa-star.filled {
    color: var(--primary-color);
}

.review-product {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 127, 80, 0.05);
    border-radius: 8px;
}

.product-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 0.25rem;
}

.cheat-name {
    color: var(--text-primary);
    font-weight: 500;
}

.game-name {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid rgba(255, 127, 80, 0.1);
}

.no-reviews-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-reviews h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.no-reviews p {
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 991px) {
    .reviews-page {
        padding: 2rem 0;
    }

    .reviews-hero-content {
        position: static;
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .reviews-hero-content h1 {
        font-size: 2rem;
    }

    .social-links {
        justify-content: center;
    }

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


.contacts-page-wrapper {
    background-color: #1E213A;
    min-height: calc(100vh - var(--header-height) - 300px);
    padding: 50px 0;
}

.contacts-content {
    background-color: #242842;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-block {
    padding: 30px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
}

.contact-info-block h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-block h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 3px;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 24px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    color: #fff;
}

.contact-details {
    padding-top: 3px;
}

.contact-details h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #aaa;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-link {
    color: #6c5ce7;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.contact-link:hover {
    color: #a29bfe;
    text-decoration: underline;
}

.contact-form-block {
    padding: 30px;
    height: 100%;
    color: #e0e0e0;
}

.contact-form-block h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-block h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 3px;
}

.contact-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    padding: 12px 15px;
}

.contact-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #6c5ce7;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.25);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faqs-section {
    color: #e0e0e0;
}

.faqs-section h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.faqs-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 3px;
}

.accordion-item {
    background-color: #242842;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 600;
    padding: 15px 20px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(108, 92, 231, 0.2);
    color: #6c5ce7;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 92, 231, 0.5);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c5ce7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 991px) {
    .contact-info-block, .contact-form-block {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .contacts-content {
        margin: 0 15px;
    }
    
    .contact-method {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .faqs-section {
        margin: 0 15px;
    }
    
    .accordion-button {
        padding: 12px 15px;
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
      background: var(--darker-color) !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.7);
      border-radius: 0 0 18px 18px;
      padding: 16px 0 24px 0;
    }
    .navbar-nav .nav-link,
    .navbar-nav .dropdown-toggle {
      color: #fff !important;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link:hover {
      color: var(--primary-color) !important;
      background: rgba(94,107,255,0.08);
      border-radius: 8px;
    }
    .dropdown-menu {
      background: var(--darker-color) !important;
      box-shadow: 0 4px 24px rgba(0,0,0,0.7);
    }
  }

.cheat-status-badge {
    font-size: 0.95em;
    margin-left: 0.5em;
    vertical-align: middle;
    padding: 0.3em 0.7em;
    border-radius: 0.7em;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cheat-img-top-wrapper, .cheat-card-image {
    position: relative;
}

.cheat-status-badge-on-image {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    pointer-events: none;
}

.cheat-status-badge {
    font-size: 0.92em;
    padding: 0.25em 0.9em;
    border-radius: 1em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    opacity: 0.97;
    letter-spacing: 0.01em;
}

.cheat-status-row {
    display: flex;
    align-items: center;
    gap: 1.2em;
    margin-bottom: 1.2em;
}

.cheat-status-badge-on-cheat-page {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.cheat-status-badge-on-cheat-page .cheat-status-badge {
    font-size: 0.95em;
    padding: 0.22em 1.1em;
    border-radius: 1.2em;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    opacity: 0.97;
    letter-spacing: 0.01em;
}

.row.g-4 {
    margin-bottom: 3rem;
    row-gap: 2.5rem !important;
}

.card, .cheat-card, .game-card {
    background: #242830;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

body {
    background-color: #1e2128;
}

.card:hover, .cheat-card:hover, .game-card:hover {
    box-shadow: 0 8px 28px rgba(255, 127, 80, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card-text, .cheat-description {
    color: #c0c3d1;
}

.popular-cheats-section {
    padding: 2rem 0;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popular-cheats-section .section-header {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.popular-cheats-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.popular-cheats-section .col-lg-4 {
    width: 350px;
    flex: 0 0 350px;
    padding: 0;
}

.cheat-card {
    background: linear-gradient(145deg, rgba(46, 52, 64, 0.8), rgba(35, 39, 47, 0.9));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 127, 80, 0.1);
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .popular-cheats-section .row {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .popular-cheats-section .row {
        max-width: 350px;
        padding: 0 1rem;
    }
    
    .popular-cheats-section .col-lg-4 {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .popular-cheats-section .section-header {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
        min-height: auto;
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 0;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .search-container {
        width: 100%;
        max-width: none;
        margin-bottom: 2.5rem;
    }

    .search-input-group {
        padding: 0.4rem;
        border-radius: 10px;
    }

    .search-input {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
    }

    .search-submit {
        padding: 0.7rem 1.2rem;
        border-radius: 8px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-block {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .stat-value {
        font-size: 2rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .feature-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .feature-content p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-toggler {
        padding: 0.5rem;
    }

    .game-card {
        margin: 0.5rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .search-input {
        font-size: 0.9rem;
        padding: 0.6rem 0.9rem;
    }

    .search-submit {
        padding: 0.6rem 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 376px) and (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.breadcrumb-nav {
    background: rgba(36, 41, 54, 0.5);
    padding: 1rem 0;
    border-radius: 12px;
    margin-top: 1rem;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

.game-hero {
    background: linear-gradient(145deg, rgba(46, 52, 64, 0.9), rgba(35, 39, 47, 0.95));
    border-radius: 20px;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 127, 80, 0.1);
}

.game-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top right, rgba(255, 127, 80, 0.15), transparent 70%),
        radial-gradient(circle at bottom left, rgba(255, 159, 127, 0.1), transparent 70%);
    pointer-events: none;
}

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

.game-cover-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.game-cover-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.game-cover-wrapper:hover .game-cover-image {
    transform: scale(1.05);
}

.game-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(35, 39, 47, 0.8), 
        rgba(35, 39, 47, 0.4) 50%, 
        rgba(35, 39, 47, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-cover-wrapper:hover .game-cover-overlay {
    opacity: 1;
}

.game-info-content {
    padding: 1rem 0 1rem 2rem;
}

.game-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.game-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 127, 80, 0.1);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 127, 80, 0.15);
    transform: translateY(-2px);
}

.stat-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.features-container {
    margin-top: 3rem;
}

.feature-item {
    background: rgba(35, 39, 47, 0.6);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(35, 39, 47, 0.8);
    border-color: rgba(255, 127, 80, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.cheat-card {
    background: linear-gradient(145deg, rgba(46, 52, 64, 0.8), rgba(35, 39, 47, 0.9));
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 127, 80, 0.1);
    height: 100%;
}

.cheat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 127, 80, 0.3);
    box-shadow: 0 15px 35px rgba(255, 127, 80, 0.2);
}

.cheat-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cheat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.cheat-card-body {
    padding: 1.5rem;
    background: linear-gradient(to bottom, 
        rgba(35, 39, 47, 0.95), 
        rgba(35, 39, 47, 0.98)
    );
}

.cheat-name {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cheat-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cheat-features {
    margin-bottom: 1.5rem;
}

.features-title {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: rgba(255, 127, 80, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 127, 80, 0.2);
}

.cheat-price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 127, 80, 0.1);
}

.cheat-price {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cheat-price span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.faq-section {
    margin-top: 5rem;
}

.custom-accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: rgba(35, 39, 47, 0.6);
    border: 1px solid rgba(255, 127, 80, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 127, 80, 0.2);
    background: rgba(35, 39, 47, 0.8);
}

.accordion-button {
    background: rgba(35, 39, 47, 0.8);
    color: #fff;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 127, 80, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff7f50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button:hover {
    background: rgba(255, 127, 80, 0.15);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 127, 80, 0.3);
    outline: none;
}

.accordion-body {
    background: rgba(35, 39, 47, 0.4);
    color: var(--text-muted);
    padding: 1.8rem;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 127, 80, 0.1);
}

.accordion-collapse {
    transition: all 0.3s ease-in-out;
}

.accordion-collapse.collapsing {
    opacity: 0;
}

.accordion-collapse.show {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .game-info-content {
        padding: 2rem 0 0 0;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .game-hero {
        padding: 2rem 0;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
}

.hero-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.animated-logo {
    max-width: 100%;
    height: auto;
    animation: floatAnimation 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .hero-content .col-lg-7 {
        width: 100%;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 40px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.drivers-page {
    padding: 3rem 0;
    background: var(--bg-dark);
}

.drivers-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.drivers-page .page-header h1 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.drivers-page .page-header .lead {
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.drivers-section {
    margin-bottom: 4rem;
}

.drivers-section .section-header {
    margin-bottom: 2rem;
}

.drivers-section .section-header h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.drivers-section .section-header h2 i {
    color: var(--primary);
}

.driver-card {
    background: linear-gradient(145deg, var(--bg-darker) 0%, rgba(32, 34, 37, 0.95) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.driver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.driver-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.driver-header h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 0;
    font-weight: 600;
}

.badge {
    padding: 0.5em 1em;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%) !important;
}

.driver-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.driver-action {
    margin-top: auto;
}

.driver-action .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffbe6b 0%, #ee5253 100%);
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.driver-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 82, 83, 0.4);
}

.driver-action .btn i {
    font-size: 1.1em;
}

.drivers-section {
    margin-bottom: 4rem;
    position: relative;
}

.drivers-section .section-header {
    margin-bottom: 2rem;
    position: relative;
}

.drivers-section .section-header h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.drivers-section .section-header h2 i {
    color: #ff6e40;;
    font-size: 1.5em;
}

.drivers-section::before {
    content: '';
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

@media (max-width: 768px) {
    .drivers-page {
        padding: 2rem 0;
    }

    .drivers-section {
        margin-bottom: 3rem;
    }

    .driver-card {
        padding: 1.25rem;
    }
    
    .drivers-section .section-header h2 {
        font-size: 1.5rem;
    }
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingBubbles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

.support-page {
    padding-bottom: 4rem;
}

.support-hero {
    padding: 6rem 0 4rem;
    position: relative;
}

.support-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), #ff6e40);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-contacts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-button.telegram {
    background: linear-gradient(45deg, #2aabee, #229ED9);
}

.contact-button.discord {
    background: linear-gradient(45deg, #7289da, #5865F2);
}

.contact-button:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-button i {
    font-size: 1.2rem;
}

.features-section {
    padding: 4rem 0;
}

.support-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.support-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), #ff6e40);
    color: #fff;
    font-size: 1.5rem;
}

.support-feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.support-feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    background: linear-gradient(45deg, var(--primary), #ff6e40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-bottom: 2rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-weight: 500;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, var(--primary), #ff6e40);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    padding: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-content {
    padding: 4rem 0;
}

.container-narrow {
    max-width: 800px;
    margin-right: 2rem;
    padding: 0 2rem;
}

.instructions-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 2rem;
    margin-right: 2rem;
    height: 100%;
}

.instructions-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.instruction-list p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-hero {
    padding: 1.5rem 0;
    position: relative;
    min-height: auto;
}

.support-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-contacts {
    margin-bottom: 0;
}

.support-content {
    padding-top: 1rem;
}

.container-narrow {
    max-width: 800px;
    margin-right: 2rem;
    padding: 0 2rem;
}

.instructions-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-right: 2rem;
}

.instructions-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.instruction-list p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: #fff;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.hero-contacts {
    margin-bottom: 0;
}

.reviews-hero {
    padding: 3rem 0 2rem;
    position: relative;
}

.reviews-section {
    padding: 2rem 0 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary), #ff6e40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.username {
    font-weight: 600;
    color: #fff;
}

.review-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-rating {
    color: var(--primary);
}

.review-product {
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.product-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.cheat-name {
    color: var(--primary);
    font-weight: 600;
}

.game-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.review-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
}

.no-reviews-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-reviews h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.no-reviews p {
    color: rgba(255, 255, 255, 0.6);
}

.modal {
    background: none !important;
}

.modal-backdrop {
    display: none !important;
}

.modal-dialog {
    margin: 1.75rem auto;
}

.modal-content {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#imageModal {
    z-index: 1100;
}

#imageModal .modal-dialog {
    max-width: 100%;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imageModal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    height: 100vh;
    position: relative;
}

#imageModal .modal-header {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1200;
    border: none;
    background: none;
    padding: 0;
}

#imageModal .btn-close {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    margin: 0;
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

#imageModal .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#imageModal .modal-body {
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#fullscreenImage {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

#imageModal .carousel-control-prev,
#imageModal .carousel-control-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    cursor: pointer;
    transition: all 0.3s ease;
}

#imageModal .carousel-control-prev {
    left: 30px;
}

#imageModal .carousel-control-next {
    right: 30px;
}

#imageModal .carousel-control-prev:hover,
#imageModal .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

#reviewModal {
    z-index: 1050;
}

#reviewModal .modal-dialog {
    margin-top: 120px;
}

#reviewModal .modal-content {
    background: var(--bg-darker);
    border: 1px solid rgba(255, 127, 80, 0.2);
    border-radius: 15px;
}

#reviewModal .modal-header {
    border-bottom: 1px solid rgba(255, 127, 80, 0.1);
    padding: 1.5rem;
}

#reviewModal .modal-body {
    padding: 1.5rem;
}

#reviewModal .modal-footer {
    border-top: 1px solid rgba(255, 127, 80, 0.1);
    padding: 1.5rem;
}

.cheat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.cheat-card-body, .cheat-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 340px;
}
.cheat-features {
    margin-bottom: 1.5rem;
}
.feature-badges, .features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}
.feature-badge {
    white-space: nowrap;
    word-break: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cheat-price-action, .cheat-footer {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 127, 80, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
}
@media (max-width: 991px) {
    .cheat-card-body, .cheat-content {
        min-height: 280px;
    }
}