/* --- Variables y Estilos Globales --- */
:root {
    --primary-color: #00ff9d; /* Un verde neón/digital */
    --dark-bg: #121212;
    --light-bg: #1f1f1f;
    --text-color: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto Mono', monospace;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-primary);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
}

p {
    font-family: var(--font-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ffffff;
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #ccc;
}

.bg-dark {
    background-color: var(--light-bg);
}

.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
}


/* --- Header y Navegación --- */
.main-header {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
}

/* --- Hero Section --- */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://via.placeholder.com/1920x1080/121212/000000?text=OFFCOD3_BACKGROUND') no-repeat center center/cover; /* Reemplaza con una imagen de fondo */
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    z-index: 1;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- Streaming Section --- */
.streaming-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.video-placeholder {
    flex: 2;
    height: 500px;
    background-color: #000;
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-secondary);
}

.stream-info {
    flex: 1;
    background-color: var(--light-bg);
    padding: 20px;
}

.stream-info h3 {
    margin-top: 0;
}

.stream-info ul {
    list-style: none;
    padding: 0;
    font-family: var(--font-secondary);
}

.stream-info li {
    margin-bottom: 10px;
}

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

.product-card {
    background-color: var(--dark-bg);
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.1);
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--light-bg);
    margin-bottom: 15px;
    background-image: url('https://via.placeholder.com/400x400/1f1f1f/00ff9d?text=Producto');
    background-size: cover;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.price {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* --- Patrocinios Section --- */
.sponsors-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.sponsor-logo-placeholder {
    height: 80px;
    width: 180px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-secondary);
    color: #777;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.sponsor-logo-placeholder:hover {
    filter: grayscale(0%);
}

.sponsorship-contact {
    text-align: center;
    background-color: var(--light-bg);
    padding: 40px;
}

/* --- Comunidad y Social Buttons --- */
#comunidad {
    text-align: center;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-button {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}

.social-button.twitch { background-color: #9146FF; color: white; }
.social-button.youtube { background-color: #FF0000; color: white; }
.social-button.discord { background-color: #5865F2; color: white; }
.social-button.twitter { background-color: #1DA1F2; color: white; }
.social-button.instagram { background-color: #E4405F; color: white; }


/* --- Footer --- */
.main-footer {
    text-align: center;
    padding: 30px;
    background-color: #000;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

.main-footer p {
    margin: 5px 0;
}
