:root {
    --primary-color: #ff006e;
    --secondary-color: #8338ec;
    --accent-color: #3a86ff;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

main {
    margin-top: 80px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.featured-section,
.page-header,
.about-content,
.streaming-platforms,
.spotify-embed,
.discography,
.contact-section,
.newsletter-section,
.journey-section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.music-grid,
.platforms-grid,
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.album-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.album-featured-cover {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-featured-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.4);
}

.album-featured-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.album-featured-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-featured-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.album-featured-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.album-tracklist {
    margin-bottom: 2rem;
}

.album-tracklist h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.album-tracklist ol {
    list-style: none;
    counter-reset: track-counter;
    padding: 0;
}

.album-tracklist li {
    counter-increment: track-counter;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: var(--text-primary);
}

.album-tracklist li:before {
    content: counter(track-counter) ". ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.album-featured-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.album-featured-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.music-card,
.platform-card,
.album-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-card:hover,
.platform-card:hover,
.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.music-card-image,
.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.music-card-image img,
.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-card h3,
.album-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.music-card p,
.album-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.platform-card {
    text-decoration: none;
    color: var(--text-primary);
}

.platform-card svg {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.platform-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: var(--light-bg);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(138, 43, 226, 0.1));
}

.about-intro {
    padding: 4rem 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-story {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.story-image {
    position: sticky;
    top: 100px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.3);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-section strong {
    color: var(--text-primary);
}

.about-stats {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.powered-by {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(138, 43, 226, 0.05));
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.tech-grid .tech-card {
    max-width: 500px;
}

.tech-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.tech-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.tech-logo img {
    max-height: 100%;
    max-width: 200px;
    filter: brightness(1.1);
}

.tech-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.tech-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
}

.tech-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
}

.timeline-date {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
}

.embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Featured Album Music Page */
.featured-album-music {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(138, 43, 226, 0.05));
}

.featured-album-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.featured-album-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 0, 110, 0.4);
}

.featured-album-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

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

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

.featured-album-image:hover img {
    transform: scale(1.05);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}

.featured-album-details {
    padding: 1rem;
}

.album-badge {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-album-details h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.album-meta {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.album-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-album-actions {
    display: flex;
    gap: 1rem;
}

/* Discography Sections */
.discography {
    padding: 3rem 0;
}

.discography-section {
    margin-bottom: 2.5rem;
}

.discography-category {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 0, 110, 0.3);
}

.album-cover {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
}

.album-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: opacity 0.3s;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-play-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.album-play-btn:hover {
    transform: scale(1.15);
}

.album-info {
    padding: 0.75rem 0;
}

.album-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.album-year {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.album-type {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.embed-placeholder {
    color: var(--text-secondary);
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.contact-method svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-method a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--primary-color);
}

.social-cta {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.social-cta h3 {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.form-note a {
    color: var(--primary-color);
}

.form-messages {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-messages.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.form-messages.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.newsletter-section {
    background: var(--light-bg);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--light-bg);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.credits {
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .album-featured {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 700px;
    }

    .album-featured-cover {
        max-width: 500px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        gap: 2rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .page-header h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .album-featured-cover {
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-album-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .featured-album-details h3 {
        font-size: 2rem;
    }

    .album-featured-info {
        padding: 1.5rem;
    }

    .album-featured-buttons {
        flex-direction: column;
    }

    .album-featured-buttons .btn {
        width: 100%;
    }

    .music-grid,
    .platforms-grid,
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        position: relative;
        top: 0;
        max-width: 450px;
        margin: 0 auto;
    }

    .intro-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .intro-text {
        font-size: 1.05rem;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

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

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-card {
        padding: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: 0;
    }

    .timeline-date {
        text-align: left;
        font-size: 1rem;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        gap: 1.2rem;
    }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

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

    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-header {
        padding: 4rem 0 2rem;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .music-grid,
    .platforms-grid,
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .album-featured {
        gap: 1.5rem;
    }

    .album-featured-cover {
        max-width: 100%;
    }

    .featured-album-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .featured-album-details h3 {
        font-size: 1.8rem;
    }

    .album-description {
        font-size: 1rem;
    }

    .discography-category {
        font-size: 1.5rem;
    }

    .album-featured-info {
        padding: 1rem;
    }

    .album-featured-description {
        font-size: 1rem;
    }

    .album-tracklist h4 {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

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

    .intro-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

    .story-section h3 {
        font-size: 1.5rem;
    }

    .story-section p {
        font-size: 1rem;
    }

    .tech-card {
        padding: 2rem 1.5rem;
    }

    .tech-logo {
        height: 60px;
    }

    .tech-card h3 {
        font-size: 1.5rem;
    }

    .tech-card p {
        font-size: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 0.95rem;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .contact-method h3 {
        font-size: 1.1rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .tech-logo {
        height: 50px;
    }
}
