/* Hero Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 100vh;
}

/* Hero Content */
.hero-content {
    text-align: center;
    animation: heroContentFadeIn 1.5s ease-out;
}

@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(0, 255, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.welcome-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.main-logo {
    margin-bottom: 2rem;
}

.brand-title {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.battle-text {
    background: linear-gradient(135deg, #ff0080, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
}

.x-symbol {
    color: #00ffff;
    margin: 0 0.2em;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    animation: xPulse 2s ease-in-out infinite alternate;
}

.pro-text {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.6)); }
}

@keyframes xPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.logo-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
}

/* Game Selection Cards */
.game-selection {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 150px;
}

.game-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bgmi-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 0, 128, 0.1));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.freefire-card:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.1));
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.game-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.game-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hero Description */
.hero-description {
    margin: 2rem 0;
}

.main-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.sub-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.gaming-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.gaming-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 ease;
}

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

.btn-primary.gaming-btn {
    background: linear-gradient(135deg, #ff0080, #ff6b35);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.4);
}

.btn-primary.gaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.6);
}

.btn-secondary.gaming-btn {
    background: linear-gradient(135deg, #00ffff, #8a2be2);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.btn-secondary.gaming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}

/* Gaming Stats Panel */
.stats-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 0, 128, 0.1));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-card:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(138, 43, 226, 0.1));
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.stat-card:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), rgba(255, 0, 128, 0.1));
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.stat-card:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(0, 255, 255, 0.1));
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.stat-icon {
    font-size: 2rem;
}

.stat-info h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ff0080, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 1.5rem;
    }
    
    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 1rem;
        gap: 2rem;
    }
    
    .brand-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .game-selection {
        gap: 1rem;
    }
    
    .game-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .gaming-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0.5rem;
    }
    
    .brand-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    
    .welcome-badge {
        padding: 0.4rem 1rem;
    }
    
    .welcome-text {
        font-size: 0.8rem;
    }
    
    .game-card {
        min-width: 100px;
        padding: 0.8rem;
    }
}
