/* Variables */
:root {
    --neon-green: #C5FF00;
    --neon-green-transparent: rgba(197, 255, 0, 0.7);
    --background: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --card-background: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease-in-out;
}

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

/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

main {
    padding-top: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-green);
    text-transform: uppercase;
}

.logo a {
    color: var(--neon-green);
    text-decoration: none;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--neon-green);
}

/* Hero Section */
#hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('futbolin.jpg') center/cover;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-link {
    text-decoration: none;
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.hero-link:hover {
    background: rgba(197, 255, 0, 0.1);
}

#hero h1 {
    font-size: 3.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(197, 255, 0, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    transition: var(--transition);
}

.hero-link:hover .hero-cta {
    background: rgba(197, 255, 0, 0.2);
    transform: scale(1.05);
}

.cta-text {
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-cta i {
    color: var(--neon-green);
    font-size: 1.5rem;
}

/* Categories Section */
#categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: var(--card-background);
    border: 1px solid rgba(197, 255, 0, 0.1);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(197, 255, 0, 0.2);
    border-color: var(--neon-green);
}

.category-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
}

.category-card i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.category-card h2 {
    color: var(--neon-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Products Section */
.products-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products-section h2 {
    color: var(--neon-green);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--card-background);
    border-radius: 12px;
    border: 1px solid rgba(197, 255, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 5px 15px rgba(197, 255, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    color: var(--neon-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-price {
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: bold;
    align-self: flex-end;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    margin-top: 4rem;
}

footer .contact-info {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}
