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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Particle background effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00B801;
    animation: float 6s infinite linear;
}

@keyframes float {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00B801;
    text-shadow: 0 0 10px #00B801;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #00B801;
    background: rgba(0, 184, 1, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #000 0%, #1a0000 50%, #000 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 184, 1, 0.05) 2px,
        rgba(0, 184, 1, 0.05) 4px
    );
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00B801, #E63B33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 184, 1, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px #00B801); }
    to { filter: drop-shadow(0 0 40px #E63B33); }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #00B801, #E63B33);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 184, 1, 0.3);
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(230, 59, 51, 0.5);
}

/* Sections */
.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #00B801;
    text-shadow: 0 0 10px #00B801;
}

.section:nth-child(even) {
    background: linear-gradient(45deg, rgba(230, 59, 51, 0.05), transparent);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #00B801, #E63B33);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #000;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 184, 1, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* History Section */
.history-timeline {
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00B801, #E63B33);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    background: #00B801;
    border-radius: 50%;
    box-shadow: 0 0 10px #00B801;
}

.timeline-year {
    font-size: 1.5rem;
    color: #E63B33;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #00B801;
}

/* Discography Section */
.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.album-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 184, 1, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 184, 1, 0.2);
    border-color: #00B801;
}

.album-cover {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #E63B33, #00B801);
    margin: 0 auto 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    font-weight: bold;
}

.album-title {
    font-size: 1.5rem;
    color: #00B801;
    margin-bottom: 0.5rem;
}

.album-year {
    color: #E63B33;
    font-weight: bold;
}

/* Social Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: linear-gradient(145deg, rgba(230, 59, 51, 0.1), rgba(0, 184, 1, 0.1));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: scale(1.05);
    border-color: #00B801;
    box-shadow: 0 0 30px rgba(0, 184, 1, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00B801, #E63B33);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

.social-name {
    font-size: 1.3rem;
    color: #00B801;
    margin-bottom: 0.5rem;
}

.social-handle {
    color: #E63B33;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid #00B801;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        /* grid-template-columns: 1fr; */
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 2s ease-in-out 1s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loading-text {
    font-size: 3rem;
    color: #00B801;
    animation: loadingPulse 1s infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Tablets y pantallas medianas */
@media (max-width: 1024px) {
    .nav {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content {
        gap: 1.5rem;
    }
}

/* Celulares grandes */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none; /* ocultamos menú (se puede reemplazar por hamburguesa) */
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        height: auto;
    }

    .section {
        padding: 3rem 1rem;
    }

    .timeline-content {
        font-size: 1rem;
    }

    .discography-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Celulares pequeños */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        width: 100%;
    }

    .about-text {
        font-size: 1rem;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .album-card,
    .social-card {
        padding: 1rem;
    }

    .album-title {
        font-size: 1.2rem;
    }

    .social-name {
        font-size: 1.1rem;
    }
}