/* Utchiha505 Gaming Accounts Marketplace - Enhanced Design */

/* ===== ENHANCED HERO VIDEO SHOWCASE ===== */
.hero-video-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Banner Header */
.video-banner-header {
    position: relative;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b, #ffa500);
    border-radius: 15px 15px 0 0;
    padding: 15px 25px;
    margin-bottom: -5px;
    z-index: 2;
    overflow: hidden;
}

.banner-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: bannerShimmer 3s ease-in-out infinite;
}

@keyframes bannerShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.live-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ENHANCED ONLINE USERS SECTION */
.online-users {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.users-icon-animated {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.users-icon-animated i {
    color: #00ff88;
    animation: usersIconDance 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes usersIconDance {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        color: #00ff88;
    }
    25% { 
        transform: scale(1.2) rotate(-5deg);
        color: #00ffaa;
    }
    50% { 
        transform: scale(1.1) rotate(0deg);
        color: #44ffaa;
    }
    75% { 
        transform: scale(1.2) rotate(5deg);
        color: #00ffaa;
    }
}

.user-counter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin: -12.5px 0 0 -12.5px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4), transparent);
    border-radius: 50%;
    animation: counterGlowPulse 2s ease-in-out infinite;
}

@keyframes counterGlowPulse {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.online-pulse-indicator {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #00ff88;
    border-radius: 50%;
    animation: onlinePulseIndicator 1.5s ease-in-out infinite;
}

@keyframes onlinePulseIndicator {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    50% { 
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    }
}

/* INCREDIBLE LIVE INDICATOR ANIMATIONS */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.live-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-dot {
    color: #ff0000;
    font-size: 0.8rem;
    animation: liveDotPulse 1.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes liveDotPulse {
    0%, 100% { 
        transform: scale(1);
        color: #ff0000;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    }
    50% { 
        transform: scale(1.3);
        color: #ff4444;
        text-shadow: 0 0 20px rgba(255, 0, 0, 1);
    }
}

.live-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ripple {
    position: absolute;
    border: 2px solid rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: rippleExpand 2s ease-out infinite;
}

.ripple-1 {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    animation-delay: 0s;
}

.ripple-2 {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    animation-delay: 0.7s;
}

.ripple-3 {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    animation-delay: 1.4s;
}

@keyframes rippleExpand {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.live-text {
    animation: liveTextGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes liveTextGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 0, 0, 0.4);
        transform: scale(1.05);
    }
}

.live-sparkles {
    position: absolute;
    top: -5px;
    right: -20px;
    width: 30px;
    height: 20px;
}

.sparkle {
    position: absolute;
    font-size: 0.5rem;
    color: #ffd700;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 5px;
    left: 10px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    top: -2px;
    left: 20px;
    animation-delay: 1.4s;
}

@keyframes sparkleFloat {
    0%, 100% { 
        transform: translateY(0) scale(0.8);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-8px) scale(1.2);
        opacity: 1;
    }
}

.banner-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Video Container */
.hero-video-container {
    position: relative;
    width: 100%;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #0d1117, #1a1a2e);
}

.video-frame-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #ff4d4d, #ff6b6b, #ffa500, #ff4d4d);
    border-radius: 25px;
    z-index: -1;
    animation: frameGlow 4s linear infinite;
}

@keyframes frameGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advanced Corner Light Effects */
.video-corner-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.corner-light {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.8), transparent);
    border-radius: 50%;
    animation: cornerPulse 2s ease-in-out infinite;
}

.corner-light.top-left {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.corner-light.top-right {
    top: 10px;
    right: 10px;
    animation-delay: 0.5s;
}

.corner-light.bottom-left {
    bottom: 10px;
    left: 10px;
    animation-delay: 1s;
}

.corner-light.bottom-right {
    bottom: 10px;
    right: 10px;
    animation-delay: 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.8);
    }
}

/* Futuristic Scan Lines */
.video-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    animation: scanMove 3s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Hologram Effect */
.video-hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: hologramShift 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes hologramShift {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-video-iframe {
    width: 100%;
    height: 400px;
    border-radius: 0 0 20px 20px;
    transition: transform 0.3s ease;
    border: none;
    position: relative;
    z-index: 1;
}

/* Video Badges */
.video-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* INCREDIBLE BADGE ANIMATIONS */
.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: badgeFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.badge-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon-animated {
    animation: badgeIconSpin 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes badgeIconSpin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(-10deg) scale(1.2);
    }
    50% { 
        transform: rotate(0deg) scale(1.1);
    }
    75% { 
        transform: rotate(10deg) scale(1.2);
    }
}

.badge-text {
    position: relative;
    z-index: 2;
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Premium Badge Special Effects */
.badge-premium .icon-sparkle-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    animation: sparkleGlow 2s ease-in-out infinite;
}

@keyframes sparkleGlow {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Verified Badge Checkmarks */
.verification-checkmarks {
    position: absolute;
    top: -5px;
    right: -5px;
}

.verification-checkmarks i {
    position: absolute;
    font-size: 0.6rem;
    color: #00ff00;
    animation: checkmarkPop 2s ease-in-out infinite;
}

.check-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.check-2 {
    top: 3px;
    left: 5px;
    animation-delay: 0.5s;
}

@keyframes checkmarkPop {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0;
    }
    10%, 70% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Trending Badge Fire Particles */
.fire-particles {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.fire-particle {
    position: absolute;
    width: 3px;
    height: 8px;
    background: linear-gradient(to top, #ff4500, #ffa500, transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: fireFlicker 1.5s ease-in-out infinite;
}

.fire-particle:nth-child(1) {
    left: 2px;
    animation-delay: 0s;
}

.fire-particle:nth-child(2) {
    left: 8px;
    animation-delay: 0.3s;
}

.fire-particle:nth-child(3) {
    left: 14px;
    animation-delay: 0.6s;
}

@keyframes fireFlicker {
    0%, 100% { 
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.2) translateY(-5px);
        opacity: 1;
    }
}

.badge-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.badge-verified {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.9), rgba(0, 191, 255, 0.9));
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.4);
    animation-delay: 1s;
}

.badge-trending {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.9), rgba(255, 140, 0, 0.9));
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    animation-delay: 2s;
}

/* Professional Status Bar */
.video-status-bar {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 3;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: scale(1.1);
    color: #ff4d4d;
}

.status-item i {
    font-size: 1rem;
    color: #ff4d4d;
    animation: statusIconPulse 3s ease-in-out infinite;
}

.status-item:nth-child(1) i { animation-delay: 0s; }
.status-item:nth-child(2) i { animation-delay: 1s; }
.status-item:nth-child(3) i { animation-delay: 2s; }

@keyframes statusIconPulse {
    0%, 100% { 
        color: #ff4d4d;
        text-shadow: 0 0 5px rgba(255, 77, 77, 0.5);
    }
    50% { 
        color: #ff6b6b;
        text-shadow: 0 0 15px rgba(255, 77, 77, 0.8);
    }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Enhanced Video Overlay */
.overlay-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 30px 40px, rgba(255, 77, 77, 0.4), transparent),
        radial-gradient(1px 1px at 80px 20px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 120px 80px, rgba(0, 255, 127, 0.3), transparent),
        radial-gradient(3px 3px at 200px 100px, rgba(255, 0, 255, 0.2), transparent),
        radial-gradient(2px 2px at 50px 150px, rgba(0, 255, 255, 0.3), transparent);
    background-size: 150px 150px;
    animation: particleMove 15s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-150px, -150px) rotate(360deg); }
}

/* Matrix Rain Effect */
.overlay-matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 70%, rgba(0, 255, 0, 0.1) 100%),
        linear-gradient(90deg, transparent 70%, rgba(0, 255, 0, 0.05) 100%);
    background-size: 20px 100px, 100px 20px;
    animation: matrixRain 8s linear infinite;
    opacity: 0.3;
}

@keyframes matrixRain {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(100px); }
}

/* Energy Waves */
.overlay-energy-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1), transparent 70%);
    border-radius: 50%;
    animation: energyPulse 3s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { 
        transform: scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.1;
    }
}

.video-play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 15px 35px rgba(255, 77, 77, 0.4);
    animation: playIconPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.play-icon-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 77, 77, 0.3);
    border-radius: 50%;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 0s;
}

.ring-2 {
    width: 130px;
    height: 130px;
    margin: -65px 0 0 -65px;
    animation-delay: 1s;
}

.ring-3 {
    width: 160px;
    height: 160px;
    margin: -80px 0 0 -80px;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes playIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Video Quality Badge */
.video-quality-badge {
    background: linear-gradient(135deg, #000, #333);
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    animation: qualityGlow 2s ease-in-out infinite;
    margin-top: 15px;
}

@keyframes qualityGlow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
        border-color: #00ff00;
    }
    50% { 
        box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
        border-color: #00ff88;
    }
}

/* Animated Stats */
.stat-animated {
    transition: all 0.3s ease;
}

.stat-animated:hover {
    transform: scale(1.1);
    color: #00ff00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.video-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Video Footer Banner */
.video-banner-footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 0 0 15px 15px;
    padding: 20px;
    margin-top: -5px;
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-top: none;
}

.footer-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: #ff4d4d;
    animation: statIconGlow 3s ease-in-out infinite;
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes statIconGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 77, 77, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 77, 77, 0.8); }
}

.hero-video-container:hover .hero-video,
.hero-video-container:hover .hero-video-iframe {
    transform: scale(1.05);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 77, 77, 0.1), rgba(22, 33, 62, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.hero-video-container:hover .hero-video-overlay {
    opacity: 1;
}

.hero-video-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-video-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-video-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-fallback-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 77, 77, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 77, 77, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 77, 77, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 107, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 77, 77, 0.4), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-title-main {
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 3.5rem;
    text-shadow: 0 4px 8px rgba(255, 77, 77, 0.3);
}

.hero-title-sub {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff4d4d, #e63946);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 77, 77, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #16213e, #0f3460);
    color: white;
    border: 2px solid rgba(255, 77, 77, 0.3);
    box-shadow: 0 8px 25px rgba(22, 33, 62, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 77, 77, 0.6);
    box-shadow: 0 12px 35px rgba(22, 33, 62, 0.6);
}

/* Enhanced Features Section */
.features {
    background: linear-gradient(180deg, #0d1117, #1a1a2e);
    padding: 100px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 77, 77, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b, #ffa500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 77, 0.3);
    box-shadow: 0 20px 40px rgba(255, 77, 77, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.4rem;
    }
    
    .hero-video-showcase {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .hero-video,
    .hero-video-iframe {
        height: 280px;
    }
    
    .hero-fallback-image {
        height: 280px;
    }
    
    .video-banner-header {
        padding: 12px 20px;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .live-section {
        align-items: center;
    }
    
    .online-users {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .live-indicator {
        font-size: 0.8rem;
    }
    
    .banner-content h3 {
        font-size: 1rem;
    }
    
    .video-badges {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: row;
        gap: 10px;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-item span {
        font-size: 0.8rem;
    }
    
    .video-play-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-stats {
        gap: 15px;
    }
    
    .video-stats span {
        font-size: 0.8rem;
    }
    
    .video-status-bar {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 8px 15px;
        flex-direction: row;
        gap: 10px;
    }
    
    .status-item {
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .status-item i {
        font-size: 0.9rem;
    }
    
    /* Discord Section Mobile */
    .discord-contact-section {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .discord-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .discord-logo-animated i {
        font-size: 2.5rem;
    }
    
    .discord-title h3 {
        font-size: 1.3rem;
    }
    
    .discord-id-card {
        padding: 20px 15px;
    }
    
    .discord-id-display {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .discord-id-number {
        font-size: 1rem;
        word-break: break-all;
    }
    
    .id-features {
        justify-content: center;
        gap: 15px;
    }
    
    .discord-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .discord-btn {
        padding: 12px 20px;
        justify-content: center;
    }
}

/* ===== PROFESSIONAL DISCORD CONTACT SECTION ===== */
.discord-contact-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(114, 137, 218, 0.1), 
        rgba(88, 101, 242, 0.1)
    );
    border-radius: 20px;
    border: 2px solid rgba(114, 137, 218, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.discord-container {
    position: relative;
    z-index: 2;
}

.discord-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.discord-logo-animated {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-logo-animated i {
    font-size: 3rem;
    color: #7289da;
    animation: discordLogoFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes discordLogoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        color: #7289da;
    }
    25% { 
        transform: translateY(-8px) rotate(-5deg);
        color: #5865f2;
    }
    50% { 
        transform: translateY(0) rotate(0deg);
        color: #7289da;
    }
    75% { 
        transform: translateY(-5px) rotate(5deg);
        color: #5865f2;
    }
}

.discord-pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 3px solid rgba(114, 137, 218, 0.4);
    border-radius: 50%;
    animation: discordPulse 3s ease-out infinite;
}

.pulse-ring.ring-1 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    animation-delay: 0s;
}

.pulse-ring.ring-2 {
    width: 110px;
    height: 110px;
    margin: -55px 0 0 -55px;
    animation-delay: 1s;
}

.pulse-ring.ring-3 {
    width: 140px;
    height: 140px;
    margin: -70px 0 0 -70px;
    animation-delay: 2s;
}

@keyframes discordPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.discord-title h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(114, 137, 218, 0.5);
}

.discord-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.discord-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.online {
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.6);
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.discord-id-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4), 
        rgba(114, 137, 218, 0.1)
    );
    border: 2px solid rgba(114, 137, 218, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(114, 137, 218, 0.2), 
        transparent
    );
    animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.id-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-id-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(114, 137, 218, 0.3);
    margin-bottom: 20px;
}

.discord-id-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #7289da;
    letter-spacing: 1px;
    animation: idGlow 3s ease-in-out infinite;
}

@keyframes idGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(114, 137, 218, 0.5);
    }
    50% { 
        text-shadow: 0 0 15px rgba(114, 137, 218, 0.8);
    }
}

.copy-btn {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.id-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item i {
    color: #43b581;
    animation: featureIconPulse 2s ease-in-out infinite;
}

@keyframes featureIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.discord-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discord-btn.primary {
    background: linear-gradient(135deg, #7289da, #5865f2);
    color: white;
    box-shadow: 0 8px 25px rgba(114, 137, 218, 0.4);
}

.discord-btn.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: white;
    border: 2px solid rgba(114, 137, 218, 0.5);
}

.discord-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(114, 137, 218, 0.6);
}

.btn-icon {
    font-size: 1.2rem;
    animation: btnIconSpin 4s ease-in-out infinite;
}

@keyframes btnIconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: linear-gradient(135deg, #43b581, #2ecc71);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(67, 181, 129, 0.4);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-notification i {
    font-size: 1.2rem;
}

/* ===== USER MENU STYLES ===== */
.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-email {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.user-balance {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 77, 77, 0.3);
}

@media (max-width: 768px) {
    .user-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .user-email {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .user-balance {
        text-align: center;
    }
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #ff4d4d;
    --primary-dark: #e63946;
    --primary-light: #ff6b6b;
    --secondary-color: #0f3460;
    --accent-color: #16213e;
    
    /* Background Colors */
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --bg-card: #1c2128;
    --bg-overlay: rgba(13, 17, 23, 0.9);
    
    /* Text Colors */
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --text-inverse: #0d1117;
    
    /* Border Colors */
    --border-primary: #30363d;
    --border-secondary: #21262d;
    --border-accent: #ff4d4d;
    
    /* Fonts */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.8rem;
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar {
    padding: var(--spacing-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.nav-logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 77, 77, 0.1);
}

.nav-user-menu {
    position: relative;
}

.user-dropdown-toggle {
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.nav-user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-secondary);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(13, 17, 23, 0.7) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--primary-light), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--primary-color), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.hero-title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: var(--spacing-xl) 0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.hero-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hero-card-content {
    padding: var(--spacing-lg);
}

.hero-card-content h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.hero-card-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.hero-card-content .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-secondary);
}

/* ===== SEARCH SECTION ===== */
.search-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-container h2 {
    margin-bottom: var(--spacing-md);
}

.search-container p {
    margin-bottom: var(--spacing-xl);
    color: var(--text-muted);
}

.search-form {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.search-input-group {
    display: flex;
    margin-bottom: var(--spacing-lg);
}

.search-input {
    flex: 1;
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-color);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-filters {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.filter-select {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== ACCOUNTS GRID ===== */
.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.account-image {
    position: relative;
    overflow: hidden;
}

.account-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.account-card:hover .account-img {
    transform: scale(1.1);
}

.account-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.account-card:hover .account-overlay {
    opacity: 1;
}

.account-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.account-content {
    padding: var(--spacing-lg);
}

.account-name {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.account-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.account-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.feature-tag {
    background: rgba(255, 77, 77, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
}

.account-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-price-section {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
}

.account-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.account-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-overlay);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-xl);
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .account-footer {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
    }
    
    .account-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary), var(--accent-color));
    padding: var(--spacing-2xl) 0;
    text-align: center;
    border-bottom: 1px solid var(--border-primary);
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.page-header-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* ===== SHOP FILTERS ===== */
.shop-filters {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border-primary);
}

.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.filters-left {
    flex: 1;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.filter-group {
    display: flex;
    align-items: center;
}

.results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.results-count {
    color: var(--text-secondary);
    font-weight: 500;
}

.active-filters {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-tag {
    background: rgba(255, 77, 77, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

/* ===== SHOP CONTENT ===== */
.shop-content {
    padding: var(--spacing-2xl) 0;
}

.no-results {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.no-results h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.no-results p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ===== SHOP STATS ===== */
.shop-stats {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== ACCOUNT DETAILS ===== */
.account-details {
    padding: var(--spacing-2xl) 0;
}

.account-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.account-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.account-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.thumbnail {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    border-color: var(--primary-light);
}

.thumbnail img {
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.account-info-section {
    padding: var(--spacing-lg);
}

.account-header {
    margin-bottom: var(--spacing-xl);
}

.account-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.account-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.account-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
}

.account-price-section {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.currency-code {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.account-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.account-actions {
    margin-bottom: var(--spacing-xl);
}

.secondary-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.trust-item span {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* ===== ACCOUNT DESCRIPTION ===== */
.account-description {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0;
}

.description-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
}

.description-content {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.description-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.account-specs {
    margin-top: var(--spacing-xl);
}

.specs-grid {
    display: grid;
    gap: var(--spacing-md);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 600;
}

.description-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.payment-methods,
.delivery-info {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-secondary);
}

.payment-option i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.delivery-steps {
    list-style: none;
    padding: 0;
}

.delivery-steps li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-secondary);
}

.delivery-steps li:last-child {
    border-bottom: none;
}

.delivery-steps i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ===== RELATED ACCOUNTS ===== */
.related-accounts {
    padding: var(--spacing-2xl) 0;
}

/* ===== FEATURED ACCOUNTS ===== */
.featured-accounts {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.no-accounts {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-primary);
}

.no-accounts-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.no-accounts h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.no-accounts p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) 0;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #1a1a2e 100%);
    padding: 0;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave .shape-fill {
    fill: #0d1117;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Footer Section Headings */
.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 i {
    color: #ff4d4d;
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: #ff4d4d;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

.social-link.discord:hover { border-color: #5865F2; box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3); }
.social-link.discord:hover::before { background: #5865F2; }

.social-link.telegram:hover { border-color: #0088cc; box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3); }
.social-link.telegram:hover::before { background: #0088cc; }

.social-link.twitter:hover { border-color: #1DA1F2; box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3); }
.social-link.twitter:hover::before { background: #1DA1F2; }

.social-link.instagram:hover { border-color: #E4405F; box-shadow: 0 10px 20px rgba(228, 64, 95, 0.3); }
.social-link.instagram:hover::before { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045); }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d4d;
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    color: #ff4d4d;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 30px 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Feature Badges */
.footer-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-badge i {
    color: #ff4d4d;
    font-size: 1rem;
}

.feature-badge:hover {
    background: rgba(255, 77, 77, 0.15);
    border-color: rgba(255, 77, 77, 0.4);
    transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-top: 60px;
    }
    
    .footer-wave {
        top: -60px;
    }
    
    .footer-wave svg {
        height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section h4 {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-features {
        justify-content: center;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    text-align: center;
    color: var(--text-primary);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-primary);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-md);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .filters-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-right {
        flex-direction: column;
    }
    
    .account-detail-container {
        grid-template-columns: 1fr;
    }
    
    .description-container {
        grid-template-columns: 1fr;
    }
    
    .secondary-actions {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
