@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --neon-red: #ff003c;
    --neon-yellow: #ffcc00;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --accent-glow: rgba(255, 0, 60, 0.6);
    --yellow-glow: rgba(255, 204, 0, 0.5);
    --texture-overlay: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

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

body {
    background-color: var(--bg-color);
    background-image: var(--texture-overlay);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Layout --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* --- Header & Hero --- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-yellow);
    text-decoration: none;
    text-shadow: 0 0 10px var(--yellow-glow);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--neon-red);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero.png') no-repeat center center/cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, var(--bg-color) 80%);
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--text-white);
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-red);
    animation: flicker 2s infinite alternate;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--neon-yellow);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--neon-red);
    color: white;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 0 20px var(--neon-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--neon-red);
}

/* --- Sections --- */

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--neon-yellow);
    margin: 20px auto 0;
    box-shadow: 0 0 10px var(--neon-yellow);
}

/* --- Grid System --- */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 15px;
    background: linear-gradient(45deg, transparent, var(--neon-red), transparent, var(--neon-yellow), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.card h3 {
    color: var(--neon-yellow);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-gray);
}

/* --- Specific Sections --- */

#combates .card {
    position: relative;
    overflow: hidden;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: var(--neon-red);
    padding: 5px 15px;
    font-weight: 900;
    font-style: italic;
    z-index: 2;
}

/* --- Footer --- */

footer {
    padding: 60px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-info a {
    color: var(--neon-yellow);
    text-decoration: none;
    font-weight: bold;
}

.social-coming-soon {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-coming-soon span {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Animations --- */

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px var(--neon-red),
            0 0 80px var(--neon-red),
            0 0 90px var(--neon-red),
            0 0 100px var(--neon-red),
            0 0 150px var(--neon-red);
    }
    20%, 24%, 55% {       
        text-shadow: none;
    }
}

/* Responsive */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}
