/* Hero Section - Modern Split Screen Design */
/* Color Palette: Orange (#FF9A3C), Pink (#FF4D7D), Purple (#8B5CF6), Blue (#3B82F6) */

.hero-gaming-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0a0e1a;
}

/* Background */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 154, 60, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: hero-pulse 8s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 154, 60, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 77, 125, 0.3), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 154, 60, 0.3), transparent);
    background-size: 200% 200%;
    animation: hero-particles-move 20s linear infinite;
}

@keyframes hero-particles-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Left Side - Content */
.hero-left-side {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-inner {
    max-width: 600px;
}

/* Badge */
.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 154, 60, 0.1);
    border: 1px solid rgba(255, 154, 60, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: hero-badge-glow 3s ease-in-out infinite;
}

@keyframes hero-badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 154, 60, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 154, 60, 0.4); }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #FF9A3C;
    border-radius: 50%;
    animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-badge-text {
    color: #FF9A3C;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title */
.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    color: #fff;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #FF9A3C 0%, #FF4D7D 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-gradient-shift 3s ease infinite;
}

@keyframes hero-gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(10deg); }
}

/* Subtitle */
.hero-subtitle-modern {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-text-highlight {
    color: #FF4D7D;
    font-weight: 700;
}

/* Features List */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #FF9A3C;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 154, 60, 0.1);
    transform: translateX(10px);
}

.hero-feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border-radius: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-feature-text strong {
    color: #fff;
    font-size: 1rem;
}

.hero-feature-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* CTA Buttons */
.hero-cta-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary-modern {
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    color: #fff;
    border: none;
}

.hero-btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 154, 60, 0.4);
}

.hero-btn-secondary-modern {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.hero-btn-secondary-modern:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8B5CF6;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-trust-item i {
    color: #FF9A3C;
    font-size: 1.1rem;
}

/* Right Side - Visual */
.hero-right-side {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
}

/* Stats Cards */
.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-stat-card {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(255, 154, 60, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 154, 60, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.hero-stat-card:hover::before {
    left: 100%;
}

.hero-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 154, 60, 0.3);
    border-color: #FF9A3C;
}

.hero-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
}

.hero-stat-content {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF9A3C;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Games Grid */
.hero-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-game-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 154, 60, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-game-item:hover {
    background: rgba(255, 154, 60, 0.1);
    border-color: #FF9A3C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.3);
}

.hero-game-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.hero-game-item:hover .hero-game-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.hero-game-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-game-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-game-item:hover .hero-game-label {
    color: #FF9A3C;
}

/* Floating Badge */
.hero-floating-badge {
    background: linear-gradient(135deg, rgba(255, 154, 60, 0.15), rgba(255, 77, 125, 0.15));
    border: 1px solid rgba(255, 154, 60, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.hero-floating-badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9A3C, #FF4D7D);
    border-radius: 12px;
    color: #fff;
    font-size: 1.5rem;
}

.hero-floating-badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-floating-badge-text strong {
    color: #fff;
    font-size: 1.1rem;
}

.hero-floating-badge-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    cursor: pointer;
}

.hero-scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 154, 60, 0.5);
    border-radius: 20px;
    position: relative;
}

.hero-scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #FF9A3C;
    border-radius: 2px;
    animation: hero-scroll-animation 2s ease infinite;
}

@keyframes hero-scroll-animation {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .hero-stats-modern {
        gap: 1rem;
    }
}

@media (max-width: 992px) {
    .hero-left-side,
    .hero-right-side {
        padding: 3rem 2rem;
    }
    
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .hero-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-left-side,
    .hero-right-side {
        padding: 2rem 1.5rem;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-cta-modern {
        flex-direction: column;
    }
    
    .hero-btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-badge-text {
        font-size: 0.7rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-feature-item {
        padding: 0.8rem;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
