/* Modern Home CSS - Dark Mode & Esports Vibe */

:root {
    --bg-dark: #0a0a12;
    --bg-card: rgba(20, 20, 30, 0.7);
    --primary-neon: #00ccff;
    --secondary-neon: #d500f9;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/23375819_s.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    background: linear-gradient(90deg, #fff, var(--primary-neon));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* CTA Buttons Container */
.cta-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-primary-neon {
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.2);
}

.btn-primary-neon:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.6);
    transform: translateY(-3px);
    text-decoration: none;
}

.btn-secondary-neon {
    background: transparent;
    border: 2px solid var(--secondary-neon);
    color: var(--secondary-neon);
    box-shadow: 0 0 15px rgba(213, 0, 249, 0.2);
}

.btn-secondary-neon:hover {
    background: var(--secondary-neon);
    color: #fff;
    box-shadow: 0 0 30px rgba(213, 0, 249, 0.6);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Section Spacing */
.section-spacer {
    padding: 4rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-modern {
        width: 100%;
    }
}