/* --- VARIABLES & RESET --- */
:root {
    --neon-green: #00ff88;
    --neon-glow: 0 0 15px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.4);
    --bg-main: #050505;
    --bg-secondary: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #b3b3b3;
    --font-header: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/** { margin: 0; padding: 0; box-sizing: border-box; }*/
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-main);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- UTILITIES --- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
strong { color: var(--text-light); font-weight: 800; }

/* --- NAVIGATION --- */
.navbar {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}
.nav-flex { display: flex; justify-content: center; }
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 35px; height: 35px; stroke: var(--neon-green); filter: drop-shadow(0 0 5px var(--neon-green)); }
.brand-text { font-family: var(--font-header); font-weight: 700; font-size: 1.2rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* --- HERO SECTION --- */
.lol-hero {
    min-height: 85vh; /* Slightly shorter to show content below */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 60px 20px;
    /* REPLACE THIS IMAGE URL */
    background-image: url('bgdota.jpg');
    background-size: cover;
    background-position: center 30%; /* Adjusted position */
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.95) 80%, var(--bg-main) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.lol-hero h1 {
    font-family: var(--font-header); font-size: 4.5rem; line-height: 1;
    margin-bottom: 1.5rem; color: var(--text-light);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); text-transform: uppercase; font-weight: 800;
}
.subtitle { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 3rem; }
.subtitle strong { color: var(--neon-green); }

/* --- CTA BUTTON --- */
.cta-container { margin-bottom: 2rem; }
.btn-massive {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    width: 100%; max-width: 600px; padding: 25px 30px;
    background-color: var(--neon-green); color: var(--bg-main);
    text-decoration: none; font-family: var(--font-header); font-weight: 800; font-size: 1.8rem;
    text-transform: uppercase; border-radius: 4px; box-shadow: var(--neon-glow);
    transition: all 0.3s ease; border: 3px solid var(--neon-green); text-align: center;
}
.btn-massive i { font-size: 2.5rem; margin-bottom: 10px; }
.btn-massive:hover { background-color: transparent; color: var(--neon-green); box-shadow: 0 0 40px rgba(0, 255, 136, 0.8); transform: scale(1.02); }
.btn-subtext { display: block; font-size: 1rem; font-family: var(--font-body); font-weight: 700; text-transform: none; margin-top: 8px; }
.pulse { animation: pulse-animation 2s infinite; }
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 25px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* --- NEW: COMPETITION SECTION --- */
.competition-section {
    padding: 60px 0;
    background-color: var(--bg-main);
    position: relative; z-index: 2;
}
.section-header {
    font-family: var(--font-header); font-size: 2.5rem; color: var(--text-light);
    text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px;
}
.competition-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.format-card {
    background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 30px; border-radius: 8px; position: relative;
    transition: all 0.3s ease;
}
.format-card:hover { border-color: var(--neon-green); transform: translateY(-5px); box-shadow: var(--neon-glow); }
.format-card.highlight { border-color: var(--neon-green); background: linear-gradient(145deg, #0a0a0a, rgba(0, 255, 136, 0.05)); }
.format-icon { font-size: 2.5rem; color: var(--neon-green); margin-bottom: 20px; }
.format-card h3 { font-family: var(--font-header); font-size: 1.5rem; margin-bottom: 10px; text-transform: uppercase; }
.format-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 20px; }
.format-tag {
    display: inline-block; padding: 5px 12px; font-size: 0.8rem; font-family: var(--font-header);
    text-transform: uppercase; font-weight: 700; color: var(--bg-main); background-color: var(--neon-green); border-radius: 4px;
}

/* --- NEW: THE WUG STANDARD SECTION --- */
.standard-section { padding: 40px 0 80px 0; background-color: var(--bg-main); position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.05); }
.standard-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.standard-item { flex: 1; min-width: 250px; }
.standard-item i { font-size: 2rem; color: var(--text-gray); margin-bottom: 15px; transition: 0.3s; }
.standard-item:hover i { color: var(--neon-green); transform: scale(1.1); }
.standard-item h4 { font-family: var(--font-header); font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; }
.standard-item p { color: var(--text-gray); font-size: 0.9rem; }

/* --- FOOTER --- */
footer {
    width: 100%; padding: 2rem 0; text-align: center; z-index: 2;
    background-color: #020202; border-top: 1px solid rgba(0, 255, 136, 0.1); margin-top: auto;
}
.footer-content p { font-size: 0.9rem; color: var(--text-gray); }
.disclaimer { font-size: 0.75rem !important; margin-top: 0.5rem; opacity: 0.6; }

/* --- MOBILE RESPONSE --- */
@media (max-width: 768px) {
    .lol-hero { padding-top: 100px; min-height: auto; }
    .lol-hero h1 { font-size: 2.8rem; }
    .subtitle { font-size: 1rem; padding: 0 10px; }
    .btn-massive { font-size: 1.3rem; padding: 20px; max-width: 95%; }
    .btn-massive i { font-size: 2rem; }
    .competition-grid { grid-template-columns: 1fr; }
    .standard-grid { flex-direction: column; gap: 40px; }
}
header {text-align: center}
.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.affiliate-card {
    padding: 20px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: 0.3s;
}

.affiliate-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.game-name {
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-green);
}

.affiliate-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
}

.affiliate-link:hover { opacity: 1; text-decoration: underline; }

.affiliate-discord {
    margin-top: 5px;
    color: #5865F2; /* Discord Blurple */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 5px;
}

.affiliate-discord:hover {
    background: #5865F2;
    color: white;
}