body {
    margin: 0;
    padding: 0;
    background: #0b1d0b;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Горизонтальная прокрутка скрыта */
    overflow-y: auto;   /* Вертикальная прокрутка включена */
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

@media (min-width: 769px) {
    .game-image {
        object-fit: contain;
        background: #000;
    }
}

.content-section {
    min-height: 100vh;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #0b1d0b 0%, #1a2f1a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

h2, h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffd700;
}
h1 {
    font-size: 3rem;
    color: #ffd700;
    text-align: center;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
}
h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.container li {
    font-size: 1.2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #ffd700;
    color: #0b1d0b;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffed4a;
    transform: translateY(-3px);
}
/* Дополнение к существующему CSS для аватаров с буквами */

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.avatar-letter {
    color: #0b1d0b;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
    z-index: 2;
    position: relative;
}

.avatar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: sparkle 3s infinite;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
}
/* Add these styles to your existing CSS */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-author {
    margin: 0 0 5px 0;
    color: #ffd700;
    font-size: 1.2rem;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.stars-4 .stars span:nth-child(5) {
    color: #666;
}

.review-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
}
.cr-schema-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.cr-title {
    color: #ffd700;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.cr-schema-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.cr-stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.cr-label { 
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cr-value { 
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}
/* Press Reviews Styles - Perfect match with your theme */
.press-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.press-review-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.press-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent, #ffd700);
    border-radius: 20px 20px 0 0;
}

.press-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.press-logo {
    text-align: center;
    margin-bottom: 20px;
}

.press-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255,215,0,0.5));
}

.press-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.press-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: #ffd700;
    font-weight: bold;
    line-height: 1;
}

.press-author {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.press-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #0b1d0b;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .press-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .press-review-card {
        padding: 25px 20px;
    }
    
    .press-quote {
        font-size: 1rem;
    }
}
/* CTA Hero Section Styles */
.cta-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.content-image {
    width: 100%;
    border-radius: 15px;
}
.cta-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: ctaGlow 6s ease-in-out infinite alternate;
}

.cta-overlay {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: titlePulse 2s ease-in-out infinite;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-block-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.primary-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #0b1d0b;
}

.primary-cta:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

.primary-cta .cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.primary-cta:hover .cta-arrow {
    transform: translateX(8px);
}

.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.cta-icon {
    font-size: 1.4rem;
}

.cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes ctaGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .cta-main-title {
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

/* Header Styles - Perfect Forest Arrow Theme */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 29, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(11, 29, 11, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 40px;
    width: 120px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #0b1d0b;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 30px;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 29, 11, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 215, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .mobile-nav.active {
        max-height: 500px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .logo-icon {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
}
footer {
    width: 100%;
}
footer a {
    text-decoration: none;
}
/* Footer Styles - Premium Design */
.site-footer {
    width: 100% !important;
    background: linear-gradient(180deg, #0b1d0b 0%, #1a2f1a 50%, #0f2a0f 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    z-index: 1;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.footer-container {
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo svg {
    height: 50px;
    width: 140px;
    filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover svg {
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.footer-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.social-link.telegram { background: linear-gradient(135deg, #0088cc, #00aaff); }
.social-link.twitter  { background: linear-gradient(135deg, #1da1f2, #00acee); }
.social-link.discord  { background: linear-gradient(135deg, #5865f2, #7289da); }

.footer-navs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    flex: 2;
}

.footer-nav {
    min-width: 200px;
}

.footer-nav-title {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a:hover {
    color: #ffd700;
    padding-left: 8px;
}

.footer-cta-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-cta h4 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    color: #0b1d0b;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(4px);
}

.footer-contact h4 {
    color: #ffd700;
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(4px);
}

.contact-icon {
    width: 22px;
    height: 22px;
    color: #ffd700;
}

.contact-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 30px 0;
    background: rgba(11, 29, 11, 0.8);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.badge-license, .badge-age {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-navs {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
    
    .footer-cta-contact {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-stats {
        justify-content: center;
    }
    
    .footer-navs {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-cta-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        order: 3;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
