/* Custom CSS for OM&ECO Website */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Colors */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --dark-color: #2d3436;
    --light-color: #ddd6fe;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    filter: brightness(1.2);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 500px;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.artist-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* About Section */
#about {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: white;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2rem;
}

.skill-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Music Section */
#music {
    padding: 100px 0;
}

.album-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.album-cover {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-cover:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 3rem;
    color: white;
}

.album-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.album-year {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.album-description {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.streaming-platforms {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--light-color);
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Story Section */
#story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.story-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.story-card p {
    line-height: 1.7;
    color: #666;
}

/* Story narrative styles */
.story-narrative {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.story-narrative p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-narrative .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
}

.story-narrative strong {
    color: var(--accent-color);
    font-weight: 600;
}

.story-narrative em {
    font-style: italic;
    color: var(--primary-color);
}

.call-to-action {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.call-to-action h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.call-to-action .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.call-to-action .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
}

/* Contact Section */
#contact {
    padding: 100px 0;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-decoration: underline;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    padding: 30px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(253, 121, 168, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(253, 121, 168, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .artist-photo {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skills-tags {
        justify-content: center;
    }
    
    .streaming-platforms {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .album-cover img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .album-card {
        padding: 20px;
    }
    
    .story-card {
        padding: 20px;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Additional animations and effects */
.animate-in {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 0.6s ease-in-out;
}

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

/* Loading state */
.loading {
    overflow: hidden;
}

.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease-out 2s forwards;
}

.loading::after {
    content: 'OM&ECO';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    z-index: 10000;
    animation: loadingText 2s ease-in-out, fadeOut 0.5s ease-out 2s forwards;
}

@keyframes loadingText {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

/* Rainbow mode easter egg */
.rainbow-mode {
    animation: rainbow 2s linear infinite;
}

.rainbow-mode * {
    animation: rainbow 2s linear infinite;
}

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Enhanced navbar scrolled state */
.navbar.scrolled {
    background: rgba(44, 62, 80, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile menu enhancements */
.navbar-toggler.active {
    transform: rotate(90deg);
}

.navbar-toggler {
    transition: transform 0.3s ease;
}

/* Enhanced hover effects */
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

/* Improved responsive typography */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .album-info h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
.platform-link:focus,
.social-link:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Improved loading states for images */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

/* Enhanced card hover effects */
.album-card,
.story-card {
    position: relative;
    overflow: hidden;
}

.album-card::before,
.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.album-card:hover::before,
.story-card:hover::before {
    transform: translateX(100%);
}

/* Upcoming Releases Styles */
.upcoming-release-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.upcoming-release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.upcoming-cover {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.upcoming-cover img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.upcoming-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.coming-soon-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upcoming-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.upcoming-type {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.upcoming-description {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.upcoming-tracks {
    margin-top: 0.5rem;
}

/* Lyrics Section Styles */
#lyrics {
    padding: 100px 0;
}

.lyrics-container {
    max-width: 800px;
    margin: 0 auto;
}

.lyrics-selector {
    text-align: center;
}

.lyrics-selector .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lyrics-selector .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(253, 121, 168, 0.25);
    color: white;
}

.lyrics-selector .form-select option {
    background: var(--dark-color);
    color: white;
}

.lyrics-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    min-height: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.lyrics-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.lyrics-text {
    color: white;
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-line;
    text-align: left;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.lyrics-text::-webkit-scrollbar {
    width: 6px;
}

.lyrics-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lyrics-text::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.lyrics-text::-webkit-scrollbar-thumb:hover {
    background: rgba(253, 121, 168, 0.8);
}

.song-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(253, 121, 168, 0.3);
    padding-bottom: 10px;
}

/* Enhanced responsive design for new sections */
@media (max-width: 768px) {
    .upcoming-release-card {
        padding: 15px;
    }
    
    .upcoming-cover img {
        height: 120px;
    }
    
    .upcoming-info h5 {
        font-size: 1.1rem;
    }
    
    .upcoming-description {
        font-size: 0.9rem;
    }
    
    .lyrics-content {
        padding: 25px;
        min-height: 300px;
    }
    
    .lyrics-text {
        font-size: 0.95rem;
        max-height: 400px;
    }
    
    .song-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .upcoming-release-card .row {
        text-align: center;
    }
    
    .upcoming-cover {
        margin-bottom: 1rem;
    }
    
    .upcoming-cover img {
        height: 180px;
        width: 180px;
        margin: 0 auto;
        border-radius: 15px;
    }
    
    .lyrics-content {
        padding: 20px;
    }
    
    .lyrics-selector .form-select {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .song-title {
        font-size: 1.2rem;
    }
}

/* Loading animation for lyrics */
.lyrics-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    flex-direction: column;
}

.lyrics-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lyrics-loading p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Enhanced platform links for better mobile experience */
@media (max-width: 576px) {
    .streaming-platforms {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .platform-link {
        width: 200px;
        justify-content: center;
    }
}

/* Letras Page Specific Styles */
.letras-page {
    background: var(--gradient-primary);
    min-height: 100vh;
    color: white;
}

.letras-page .navbar {
    background: rgba(44, 62, 80, 0.95) !important;
}

.letras-sidebar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.letras-sidebar .list-group-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.letras-sidebar .list-group-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.letras-sidebar .list-group-item.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.letras-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 600px;
}

.album-lyrics {
    display: none;
}

.album-lyrics.active {
    display: block;
}

.album-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.album-header h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.album-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

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

.song-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.song-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.song-card h6 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.song-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

#lyrics-display {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

#lyrics-display.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.lyrics-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

#song-title {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#song-album {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

#lyrics-text {
    color: white;
    line-height: 2;
    font-size: 1.1rem;
    white-space: pre-line;
    text-align: left;
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#lyrics-text::-webkit-scrollbar {
    width: 8px;
}

#lyrics-text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#lyrics-text::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

#lyrics-text::-webkit-scrollbar-thumb:hover {
    background: rgba(253, 121, 168, 0.8);
}

/* Responsive design for letras page */
@media (max-width: 768px) {
    .letras-sidebar {
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    .letras-content {
        padding: 25px;
    }
    
    .album-header h3 {
        font-size: 2rem;
    }
    
    .songs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #lyrics-display {
        padding: 25px;
        margin-top: 2rem;
    }
    
    #song-title {
        font-size: 1.5rem;
    }
    
    #lyrics-text {
        font-size: 1rem;
        line-height: 1.8;
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .letras-sidebar {
        padding: 15px;
    }
    
    .letras-content {
        padding: 20px;
    }
    
    .album-header h3 {
        font-size: 1.8rem;
    }
    
    .album-header p {
        font-size: 1rem;
    }
    
    .song-card {
        padding: 15px;
    }
    
    .song-card h6 {
        font-size: 1.1rem;
    }
    
    #lyrics-display {
        padding: 20px;
    }
    
    #song-title {
        font-size: 1.3rem;
    }
    
    #song-album {
        font-size: 1rem;
    }
    
    #lyrics-text {
        font-size: 0.95rem;
        padding: 15px;
    }
}

/* Loading state for lyrics */
.lyrics-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
}

.lyrics-loading .spinner-border {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.lyrics-loading p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Error state for lyrics */
.lyrics-error {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.lyrics-error i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.lyrics-error p {
    font-size: 1.1rem;
    margin: 0;
}
