:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #00ff80;
    --neon-blue: #00e5ff;
    --neon-pink: #ff00ff;
}

/* Base Styles */
body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 1px, transparent 1px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 1px),
        radial-gradient(white, rgba(255,255,255,.1) 1px, transparent 1px),
        radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 1px, transparent 1px);
    background-size: 350px 350px, 250px 250px, 150px 150px, 100px 100px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: starsMoving 200s linear infinite;
    z-index: -1;
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(255, 255, 255, .8);
}

.navbar-brand {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.75rem;
    color: var(--neon-blue);
    text-shadow: 
        0 0 2px var(--neon-blue),
        0 0 4px var(--neon-blue),
        0 0 6px var(--neon-blue);
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    text-shadow: 
        0 0 2px var(--accent-color),
        0 0 4px var(--accent-color),
        0 0 6px var(--accent-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-content {
    text-align: left;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hero-content h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-content h1 span {
    display: block;
    animation: neonFlicker 1.5s infinite alternate;
}

.hero-content h1 span:nth-child(1) {
    color: var(--neon-blue);
    text-shadow: 
        0 0 2px var(--neon-blue),
        0 0 4px var(--neon-blue),
        0 0 6px var(--neon-blue);
}

.hero-content h1 span:nth-child(2) {
    color: var(--neon-pink);
    text-shadow: 
        0 0 2px var(--neon-pink),
        0 0 4px var(--neon-pink),
        0 0 6px var(--neon-pink);
    font-size: 3.5rem;
}

.hero-content h1 span:nth-child(3) {
    color: var(--accent-color);
    text-shadow: 
        0 0 2px var(--accent-color),
        0 0 4px var(--accent-color),
        0 0 6px var(--accent-color);
    font-size: 3.5rem;
}

.hero-bio {
    margin-bottom: 2rem;
}

.hero-bio .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.hero-content .stat {
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.hero-content .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

.hero-content .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    display: block;
    line-height: 1;
}

.hero-content .stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-profile-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(0, 229, 255, 0.3),
        0 0 40px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-profile-img:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 30px rgba(0, 229, 255, 0.5),
        0 0 60px rgba(255, 0, 255, 0.5);
}

.social-icons-hero {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons-hero .social-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icons-hero .fa-instagram:hover { 
    color: #E1306C; 
    transform: scale(1.1);
}

.social-icons-hero .fa-youtube:hover { 
    color: #FF0000; 
    transform: scale(1.1);
}

.social-icons-hero .fa-spotify:hover { 
    color: #1DB954; 
    transform: scale(1.1);
}

.latest-release {
    margin-top: 2rem;
}

/* Discografía Section */
.ep-section {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.ep-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ep-cover {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.ep-cover:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.ep-cover img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ep-cover .ep-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.ep-cover:hover .ep-overlay {
    opacity: 1;
}

.ep-title {
    font-family: 'Permanent Marker', cursive;
    color: var(--neon-blue);
    text-shadow: 
        0 0 5px var(--neon-blue),
        0 0 10px var(--neon-blue);
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.track-number {
    width: 40px;
    font-family: 'Permanent Marker', cursive;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.track-name {
    flex-grow: 1;
    margin: 0 1rem;
}

.track-duration {
    margin-right: 1rem;
    opacity: 0.7;
}

.track-play-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.track-item:hover .track-play-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.ep-buttons {
    display: flex;
    gap: 1rem;
}

/* Music Section */
.music-collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 100px;
    padding: 0;
}

.music-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.music-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.music-card:hover img {
    transform: scale(1.1);
}

.music-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

/* Modal Styles */
.modal-content {
    background-color: var(--secondary-color) !important;
    border: none !important;
    border-radius: 15px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 10px rgba(0, 229, 255, 0.3),
        0 0 20px rgba(255, 0, 255, 0.3) !important;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.modal-header {
    border-bottom: none !important;
    padding: 1.5rem !important;
}

.modal-header .modal-title {
    width: 100%;
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    color: var(--primary-color);
    text-shadow: 
        0 0 5px var(--neon-blue),
        0 0 10px var(--neon-blue),
        0 0 15px var(--neon-blue);
}

/* Button Styles */
.btn-neon {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 25px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-neon:hover {
    color: #000;
    background-color: #fff;
    transform: scale(1.05);
    animation: neonPulse 1.5s infinite;
}

.btn-neon:hover::before {
    opacity: 1;
}

.btn-youtube:hover {
    color: #ff0000;
}

.btn-spotify:hover {
    color: #1DB954;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Animations */
@keyframes starsMoving {
    from { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px; }
    to { background-position: 350px 350px, 290px 410px, 480px 620px, 420px 450px; }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px #bdbdbd8e,
            0 0 10px #fff,
            0 0 20px #ffffff,
            0 0 40px currentColor,
            0 0 80px currentColor;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-pink);
    }
    to {
        box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-pink);
    }
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

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

    .hero-content h1 span:nth-child(2),
    .hero-content h1 span:nth-child(3) {
        font-size: 2.8rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-profile-img {
        width: 300px;
        height: 300px;
    }

    .hero-content .stat {
        text-align: center;
        padding-left: 0;
    }

    .hero-content .stat::before {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
    }

    .ep-section {
        padding: 1.5rem;
    }
    
    .ep-cover {
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .music-collage {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 50px;
    }

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

    .stat-number {
        font-size: 1.8rem;
    }

    .social-icons-hero {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h1 span:nth-child(2),
    .hero-content h1 span:nth-child(3) {
        font-size: 2.2rem;
    }

    .hero-profile-img {
        width: 250px;
        height: 250px;
    }

    .hero-bio .lead {
        font-size: 1.1rem;
    }

    .hero-content .stat-number {
        font-size: 1.8rem;
    }

    .track-item {
        padding: 0.75rem;
    }
    
    .track-number {
        width: 30px;
    }
    
    .track-name {
        font-size: 0.9rem;
    }
    
    .track-duration {
        font-size: 0.8rem;
    }
    
    .music-card-title {
        font-size: 0.8rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn-neon {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

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

    .footer-section {
        padding: 1rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .ep-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-bio .lead {
        font-size: 1rem;
    }

    .hero-profile-img {
        width: 200px;
        height: 200px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .footer-section {
        min-width: 100%;
    }

    .footer-links {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --neon-blue: #0000ff;
        --neon-pink: #ff00ff;
        --accent-color: #00ff00;
    }

    .bio-container,
    .navbar,
    .footer {
        background-color: #000000;
    }

    .text-shadow,
    .bio-title,
    .navbar-brand {
        text-shadow: none;
    }
}
