/* ===============================================
   CRITICAL CSS - ANA SAYFA HIZLI YÜKLEME
   Sadece hero section ve temel stiller
   =============================================== */

/* Critical Fonts - Inline */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Orbitron:wght@700&display=swap");

/* Critical Variables */
:root {
    --bg-primary: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    --text-primary: #ffffff;
    --text-accent: #53e88b;
    --valorant-red: #ff4655;
    --valorant-gold: #f0d53f;
    --gradient-primary: linear-gradient(135deg, #ff4655 0%, #f0d53f 100%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body - Critical */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Hero Section - Critical */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-accent);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Critical Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #53e88b 0%, #42d774 100%);
    color: #0a0e27;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(83, 232, 139, 0.4);
}

/* Hide non-critical sections initially */
#lobbies-section {
    display: none;
}

footer {
    display: none;
}

.section.container {
    display: none;
}