/* Custom CSS for Ant Soccer Game website - Game Theme */

:root {
    --game-primary: #ff00e6; /* Vibrant magenta from logo */
    --game-secondary: #00b7ff; /* Bright blue from logo */
    --game-dark: #0a0e17; /* Deep blue-black for background */
    --game-light: #dff8ff; /* Light blue tint for text */
    --game-accent: #ff6b00; /* Orange-red accent from logo eyes */
    --game-gradient: linear-gradient(135deg, #0a0e17 0%, #152238 100%); /* Background gradient */
    --game-glow: 0 0 10px rgba(255, 0, 230, 0.7); /* Neon magenta glow effect */
    --game-card-bg: rgba(21, 34, 56, 0.8); /* Card background with transparency */
    
    /* Font families */
    --font-sans: 'Inter', sans-serif;
    --font-orbitron: 'Orbitron', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

/* Font utility classes */
.font-sans {
    font-family: var(--font-sans);
}

.font-orbitron {
    font-family: var(--font-orbitron);
}

.font-mono {
    font-family: var(--font-mono);
}

/* ======== GENERAL STYLES ======== */
body {
    font-family: var(--font-sans);
    background-color: var(--game-dark);
    color: var(--game-light);
    overflow-x: hidden;
    position: relative;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.game-section-title {
    font-family: var(--font-orbitron);
    font-weight: 700;
    color: var(--game-primary);
    margin-bottom: 1.5rem;
    text-shadow: var(--game-glow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-logo-text {
    font-family: var(--font-orbitron);
    font-weight: 600;
    color: var(--game-primary);
    font-size: 1.2rem;
    text-shadow: var(--game-glow);
}

/* ======== ANIMATION EFFECTS ======== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulsate {
    0% { box-shadow: 0 0 0 0 rgba(255, 146, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 146, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 146, 0, 0); }
}

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

/* Starry background animation */
@keyframes twinkle {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/* ======== HEADER & NAVIGATION ======== */
.game-header {
    position: relative;
    height: 5px;
    background-color: var(--game-primary);
    box-shadow: var(--game-glow);
    z-index: 2;
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url('../assets/images/bg/stars-bg.svg') repeat top center;
    z-index: -2;
}

.twinkling {
    background: transparent url('../assets/images/bg/twinkling.svg') repeat top center;
    z-index: -1;
    animation: twinkle 200s linear infinite;
}

.game-navbar {
    background-color: rgba(10, 14, 23, 0.9);
    border-bottom: 2px solid var(--game-primary);
    box-shadow: 0 2px 10px rgba(61, 212, 5, 0.3);
    padding: 10px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-glow {
    position: relative;
    transition: all 0.3s ease;
}

.btn-glow:hover, .btn-glow:focus {
    color: var(--game-primary) !important;
    text-shadow: var(--game-glow);
}

.btn-glow::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--game-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.btn-glow:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--game-secondary);
    color: var(--game-dark) !important;
    font-weight: bold;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    margin-left: 15px;
    animation: pulsate 2s infinite;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.pulse-anim {
    animation: pulse 2s infinite;
}

/* ======== HERO SECTION ======== */
.hero-section {
    background: var(--game-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/bg/grid-pattern.svg') repeat;
    opacity: 0.1;
    z-index: -1;
}

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

.hero-title {
    font-family: var(--font-orbitron);
    font-weight: 700;
    color: var(--game-primary);
    text-shadow: var(--game-glow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--game-secondary);
    margin-bottom: 2rem;
    text-shadow: 0 0 5px rgba(255, 148, 0, 0.7);
}

.game-trailer-wrapper {
    background: var(--game-card-bg);
    border: 2px solid var(--game-primary);
    border-radius: 10px;
    box-shadow: var(--game-glow), 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.game-trailer-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.download-btn {
    background: var(--game-primary);
    color: var(--game-dark);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.download-btn:hover::before {
    left: 100%;
}

.ai-agent-btn {
    background: var(--game-secondary);
    color: var(--game-dark);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1rem;
}

.ai-agent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.ai-agent-btn:hover::before {
    left: 100%;
}

.learn-more-btn {
    background: transparent;
    color: var(--game-light);
    border: 2px solid var(--game-secondary);
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--game-secondary);
    color: var(--game-dark);
    transform: translateY(-3px);
}

/* ======== ABOUT SECTION ======== */
.about-section {
    background: linear-gradient(to bottom, var(--game-dark), #101728);
    position: relative;
}

.about-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--game-primary);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--game-secondary);
}

.about-card-title {
    font-family: var(--font-orbitron);
    color: var(--game-secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--game-primary);
}

/* ======== FEATURES SECTION ======== */
.features-section {
    background: var(--game-gradient);
    position: relative;
}

.feature-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--game-primary), transparent, var(--game-secondary));
    z-index: -1;
    transform: scale(0.95);
    filter: blur(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 212, 5, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--game-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--game-primary);
    color: var(--game-dark);
    transform: rotateY(180deg);
}

.feature-title {
    font-family: var(--font-orbitron);
    color: var(--game-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ======== SCREENSHOTS SECTION ======== */
.screenshots-section {
    background: linear-gradient(to bottom, #101728, var(--game-dark));
    position: relative;
}

.screenshot-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 3px solid transparent;
}

.screenshot-card:hover {
    transform: scale(1.05);
    z-index: 2;
    border: 3px solid var(--game-primary);
}

.screenshot-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 7px;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.screenshot-title {
    font-family: var(--font-orbitron);
    color: var(--game-light);
    margin-bottom: 5px;
    font-weight: 600;
}

/* ======== DOWNLOAD SECTION ======== */
.download-section {
    background: var(--game-gradient);
    position: relative;
}

.download-platform {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-platform:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.platform-icon {
    font-size: 3rem;
    color: var(--game-primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.download-platform:hover .platform-icon {
    transform: scale(1.2);
    color: var(--game-secondary);
}

.platform-name {
    font-weight: bold;
    color: var(--game-light);
    margin-bottom: 15px;
}

.download-now-btn {
    background: var(--game-primary);
    color: var(--game-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.download-now-btn:hover {
    background: var(--game-secondary);
    transform: scale(1.05);
}

.system-req-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    border-left: 4px solid var(--game-secondary);
    padding: 25px;
    height: 100%;
    margin-top: 30px;
}

.system-req-title {
    font-family: var(--font-orbitron);
    color: var(--game-secondary);
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
    padding-bottom: 10px;
}

.system-req-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--game-primary);
}

.req-list {
    margin-bottom: 0;
}

.req-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.req-list li::before {
    content: '⚡';
    margin-right: 10px;
    color: var(--game-primary);
}

/* ======== TESTIMONIALS SECTION ======== */
.testimonials-section {
    background: linear-gradient(to bottom, var(--game-dark), #101728);
    position: relative;
}

.testimonial-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: rgba(61, 212, 5, 0.1);
    font-family: var(--font-sans);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--game-primary);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--game-dark);
    border: 2px solid var(--game-secondary);
}

.testimonial-name {
    font-weight: bold;
    color: var(--game-light);
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--game-secondary);
    margin-bottom: 0;
}

.testimonial-text {
    margin-top: 20px;
    font-style: italic;
    color: rgba(223, 248, 255, 0.8);
}

/* ======== FOOTER STYLES ======== */
.game-footer {
    background: var(--game-dark);
    position: relative;
    border-top: 4px solid var(--game-primary);
}

.game-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/bg/grid-pattern.svg') repeat;
    opacity: 0.05;
    z-index: -1;
}

.footer-links a {
    color: var(--game-light);
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--game-primary);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--game-primary);
    margin-right: 8px;
    font-size: 0.8rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--game-card-bg);
    border-radius: 50%;
    color: var(--game-light);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--game-primary);
    color: var(--game-dark);
    transform: translateY(-5px);
}

.footer-divider {
    border-color: rgba(61, 212, 5, 0.2);
    margin: 30px 0;
}

.copyright {
    color: rgba(223, 248, 255, 0.6);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--game-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: var(--game-primary);
}

/* ======== FLOATING GAME ELEMENTS ======== */
.floating-ant {
    position: fixed;
    width: 30px;
    height: 30px;
    z-index: 999;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%233dd405" d="M11 18.07L11.88 18C13.14 17.85 14.33 17.25 15.23 16.31C14.5 15.96 13.67 15.79 12.83 15.79C12.11 15.79 11.39 15.93 10.73 16.22C10.13 16.5 9.59 16.91 9.13 17.4L8.96 17.73L6.65 15.42L9.35 12.71L7.5 10.87H7V8.87C7 8.09 7.18 7.35 7.5 6.7C4.23 8.98 3.5 13.35 6.09 16.54L3 19.03L4.4 20.45L7.47 16.96C8.37 17.81 9.5 18.44 10.76 18.72L11 18.07M17.71 13.83C19.42 13.83 20.82 12.43 20.82 10.72C20.82 9.35 19.85 8.17 18.53 7.77L18.05 9.13C18.67 9.34 19.12 9.96 19.12 10.72C19.12 11.54 18.44 12.21 17.63 12.21C16.1 12.21 15.14 10.4 15.14 10.24C14.29 11.31 14.04 12.71 14.39 14.03C15.31 13.74 16.43 13.83 17.71 13.83Z" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.ant1 {
    top: 120px;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.ant2 {
    top: 70%;
    right: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-ball {
    position: fixed;
    width: 20px;
    height: 20px;
    bottom: 10%;
    left: 50%;
    z-index: 999;
    pointer-events: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,3C13.76,3 15.4,3.53 16.78,4.41L16.5,5H13L12,5L10.28,4.16L10.63,3.13C11.08,3.05 11.53,3 12,3M9.53,3.38L9.19,4.41L6.63,5.69L5.38,5.94C6.5,4.73 7.92,3.84 9.53,3.38M13,6H16L18.69,9.59L17.44,12.16L14.81,12.78L11.53,8.94L13,6M6.16,6.66L7,10L5.78,13.06L3.22,13.94C3.08,13.31 3,12.67 3,12C3,10.1 3.59,8.36 4.59,6.91L6.16,6.66M20.56,9.22C20.85,10.09 21,11.03 21,12C21,13.44 20.63,14.79 20,16H18L15.91,13.03L17.13,10.5L20.56,9.22M11,9.84L14.13,13.5L12.9,15.94L8.9,16.6L5.25,13.97L6.5,10.88L11,9.84M3.28,15.5C4.34,17.56 6.07,19.11 8.22,19.94L8.94,18.41L10.22,17.25L8.38,15.75L3.28,15.5M16.5,16L17.66,17.97L15.38,19C13.07,19.7 10.54,19.58 8.31,18.68L11.78,17.91L15.38,17L16.5,16M19.09,17.5L19.56,18.91C18.5,20.07 17.07,20.97 15.47,21.5L14.5,20.5L15.88,18.41L19.09,17.5M13.91,19.56L14.5,21C13.71,21.13 12.87,21.18 12.05,21.13C11.22,21.07 10.44,20.89 9.72,20.63L11,19.94L13.91,19.56Z" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

/* ======== RESPONSIVE STYLES ======== */
@media (max-width: 992px) {
    .cta-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .game-trailer-wrapper {
        margin-top: 30px;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .download-btn, .ai-agent-btn, .learn-more-btn {
        width: 100%;
        margin: 0 0 15px 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .floating-ant, .floating-ball {
        display: none;
    }
}

/* ======== SPECIAL ELEMENTS STYLES ======== */
.game-stats {
    width: 100%;
}

.stat-item {
    padding: 10px 15px;
    background: rgba(61, 212, 5, 0.1);
    border-radius: 10px;
    flex: 1;
    max-width: 120px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--game-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--game-secondary);
    text-transform: uppercase;
}

.trailer-top-bar {
    background: var(--game-dark);
    padding: 5px 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: flex-end;
}

.control-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin-left: 5px;
}

.trailer-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 148, 0, 0.8);
    color: var(--game-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hero-platforms {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

.hero-platforms i {
    transition: all 0.3s ease;
}

.hero-platforms i:hover {
    color: var(--game-primary);
    transform: translateY(-5px);
}

.key-points {
    list-style: none;
    padding-left: 0;
}

.key-points li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.key-points li i {
    color: var(--game-primary);
    margin-right: 10px;
    margin-top: 4px;
}

/* Community section */
.community-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--game-primary);
}

.community-card-title {
    font-family: var(--font-orbitron);
    color: var(--game-secondary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.community-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--game-primary);
}

.community-features .feature-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.community-features .feature-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--game-primary);
    background: rgba(61, 212, 5, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.community-features .feature-item h4 {
    font-family: var(--font-orbitron);
    color: var(--game-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.social-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid var(--game-secondary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--game-light);
    background: var(--game-dark);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
}

.social-link i {
    font-size: 1.8rem;
    margin-right: 15px;
}

.social-link span {
    font-weight: bold;
    flex-grow: 1;
}

.social-link .member-count {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: right;
}

.social-link.discord {
    background: #5865F2;
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-link:hover {
    transform: translateY(-5px);
    color: white;
}

/* Updates section */
.updates-section {
    background: var(--game-gradient);
    position: relative;
}

.update-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.update-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background: var(--game-primary);
    border-radius: 2px;
}

.update-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px;
}

.update-version {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--game-card-bg);
    border: 2px solid var(--game-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.7rem;
    color: var(--game-primary);
}

.update-content {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.update-content h4 {
    font-family: var(--font-orbitron);
    color: var(--game-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.update-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.update-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.update-list li::before {
    content: '\27a2';
    position: absolute;
    left: 0;
    color: var(--game-primary);
}

.update-date {
    font-size: 0.8rem;
    color: rgba(223, 248, 255, 0.6);
    font-style: italic;
    text-align: right;
}

/* Special offer card */
.special-offer-card {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--game-primary);
}

.special-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/bg/grid-pattern.svg') repeat;
    opacity: 0.05;
    z-index: -1;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--game-accent);
    color: white;
    padding: 5px 40px;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.offer-features {
    list-style: none;
    padding-left: 0;
}

.offer-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.offer-features li i {
    color: var(--game-secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.premium-btn {
    background: linear-gradient(45deg, var(--game-secondary), var(--game-accent));
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.premium-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 18, 79, 0.4);
    color: white;
}

.premium-btn:hover::after {
    left: 100%;
}

/* Reviews summary */
.reviews-summary {
    background: var(--game-card-bg);
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
}

.overall-rating {
    font-size: 3rem;
    font-weight: bold;
    color: var(--game-primary);
    margin-bottom: 5px;
}

.stars-container {
    color: var(--game-secondary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.total-reviews {
    color: rgba(223, 248, 255, 0.6);
    font-size: 0.9rem;
}

/* Other custom elements */
.stat-item, .trailer-top-bar, .trailer-tag, .hero-platforms, 
.key-points, .community-card, .community-features, .social-card, 
.social-links, .update-timeline, .update-item, .special-offer-card, 
.offer-features, .reviews-summary {
    position: relative;
    z-index: 1;
}

@media (max-width: 576px) {
    .game-logo-text {
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .system-req-card {
        margin-top: 20px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-item {
        max-width: 90px;
        padding: 8px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-platforms {
        font-size: 1.2rem;
        gap: 15px;
    }
    
    .overall-rating {
        font-size: 2.5rem;
    }
}