/* ========================================
   PREMIUM SECTIONS - COMBAT, GALLERY, DISCORD, FOOTER
   Ultra Modern & Professional Design
   ======================================== */

/* Combat Showcase Section - Dark & Gold with Video Background */
.combat-showcase {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Combat Video Background */
.combat-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.combat-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.combat-video-background .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Ensure content is above video */
.combat-showcase .container {
    position: relative;
    z-index: 2;
}

.combat-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
    z-index: 3;
}

.combat-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
    z-index: 3;
}

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

.combat-feature-box {
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(201, 169, 97, 0.1);
}

.combat-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.combat-feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(201, 169, 97, 0.4),
        0 0 0 1px var(--primary-color),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(26, 31, 46, 0.9) 100%);
}

.combat-feature-box:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlowPulse 3s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.feature-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.combat-feature-box:hover .feature-icon-wrapper i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.6);
}

.combat-feature-box h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.combat-feature-box p {
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-stats {
    margin-top: 20px;
}

.stat-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Media Showcase Premium - Dark & Gold */
.media-showcase-premium {
    padding: 140px 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, #000000 0%, #0a0e1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.media-showcase-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
}

.media-showcase-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
}

.screenshot-gallery-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.screenshot-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(201, 169, 97, 0.1);
}

.screenshot-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.overlay-content {
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.overlay-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.overlay-content p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.screenshot-item:hover .screenshot-wrapper {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.4);
    transform: translateY(-8px);
}

.screenshot-item:hover .screenshot-wrapper img {
    transform: scale(1.1);
}

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

.screenshot-item:hover .overlay-content {
    transform: translateY(0);
}

/* Discord CTA Premium - Dark & Gold Theme */
.discord-cta-premium {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #0d1117 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.discord-background-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    animation: discordPulse 8s ease-in-out infinite;
}

@keyframes discordPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.discord-content-premium {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(26, 31, 46, 0.9) 100%);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(30px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.discord-icon-mega {
    display: none;
}

.discord-text {
    margin-bottom: 40px;
}

.discord-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.discord-text h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.discord-text p {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.discord-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-discord-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--dark-bg);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    align-self: center;
}

.btn-discord-premium:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-discord-premium i:first-child {
    font-size: 1.2rem;
}

.btn-discord-premium i:last-child {
    display: none;
}

/* Footer Premium - Dark & Gold */
.footer-premium {
    background: linear-gradient(180deg, #0a0e1a 0%, #000000 100%);
    color: var(--text-color);
    position: relative;
}

.footer-top {
    padding: 80px 0 60px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand {
    max-width: 600px;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.3));
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-description {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social-premium {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--dark-bg);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

.footer-links-group h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-group ul li a i {
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links-group ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links-group ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.copyright i {
    color: var(--primary-color);
    margin-right: 5px;
}

.disclaimer {
    color: rgba(148, 163, 184, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.disclaimer strong {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .combat-features-grid,
    .screenshot-gallery-premium {
        grid-template-columns: 1fr;
    }
    
    .discord-content-premium {
        padding: 40px 30px;
    }
    
    .discord-text h2 {
        font-size: 2rem;
    }
    
    .discord-stats {
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .combat-feature-box,
    .discord-content-premium {
        padding: 30px 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-wrapper i {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .discord-icon-mega {
        width: 90px;
        height: 90px;
    }
    
    .discord-icon-mega i {
        width: 90px;
        height: 90px;
        font-size: 3.5rem;
    }
}
