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

/* SVG Icons Fix */
svg {
    display: block;
    overflow: visible;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

svg[viewBox] {
    width: 100%;
    height: 100%;
}

/* Ensure icons are fully visible on mobile */
.platform-buttons,
.social-grid,
.platforms-grid {
    overflow: visible;
}

.platform-buttons *,
.social-grid *,
.platforms-grid * {
    overflow: visible;
}

:root {
    --primary-black: #000000;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    
    /* Music Theme Colors */
    --purple: #b026ff;
    --pink: #ff0080;
    --blue: #00d4ff;
    --turquoise: #00ffd4;
    --violet: #8b5cf6;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #b026ff 0%, #ff0080 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #b026ff 100%);
    --gradient-3: linear-gradient(135deg, #ff0080 0%, #00ffd4 100%);
    --gradient-4: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%);
    --gradient-soft: linear-gradient(135deg, rgba(176, 38, 255, 0.2) 0%, rgba(255, 0, 128, 0.2) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: auto;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    position: relative;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--gradient-1);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(176, 38, 255, 0.5);
}

.cta-button.large {
    padding: 22px 70px;
    font-size: 1.4rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(176, 38, 255, 0.6);
    }
}

/* Platform Buttons */
.platform-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 44px;
    box-sizing: border-box;
    overflow: visible;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(176, 38, 255, 0.3);
}

.platform-btn svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: block;
    overflow: visible;
}

.platform-btn:hover svg {
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--purple);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--purple);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* About Section */
.about-section {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.image-placeholder {
    aspect-ratio: 1;
    background: var(--gradient-2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.about-bio-secondary {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FC3F1D 0%, #E63900 100%);
    color: var(--text-primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(252, 63, 29, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 63, 29, 0.5);
    background: linear-gradient(135deg, #FF4A2A 0%, #FC3F1D 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #0077FF 0%, #4680C2 100%);
    color: var(--text-primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 119, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0088FF 0%, #0077FF 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 119, 255, 0.5);
}

/* Songs Section */
.songs-section {
    background: var(--primary-black);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.song-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.song-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.3);
}

.song-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--card-bg);
    min-height: 280px;
    background-image: var(--gradient-3);
    background-size: cover;
    background-position: center;
}

.song-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 280px;
    background: var(--card-bg);
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.song-cover-image[src=""],
.song-cover-image:not([src]),
.song-cover-image[src*="undefined"],
.song-cover-image[src*="null"],
.song-cover-image[style*="opacity: 0"] {
    opacity: 0 !important;
    background: var(--gradient-3);
    z-index: 0;
}

.song-cover-image:not([src])::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Ensure images load completely on mobile */
@media (max-width: 768px) {
    .song-cover-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background: var(--gradient-3);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.cover-placeholder::before {
    content: '🎵';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cover-placeholder.large {
    aspect-ratio: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.song-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.song-info {
    padding: 20px;
}

.song-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.song-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.song-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.song-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.song-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    transform: translateX(5px);
}

.bandlink-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #b026ff 100%);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 3px 15px rgba(0, 212, 255, 0.3);
}

.bandlink-btn:hover {
    background: linear-gradient(135deg, #00ffd4 0%, #ff0080 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

/* Release Section */
.release-section {
    background: var(--dark-bg);
}

.release-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 30px;
    border: 2px solid var(--purple);
    box-shadow: 0 0 50px rgba(176, 38, 255, 0.2);
}

.release-cover {
    position: relative;
}

.release-cover-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.release-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.release-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-1);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.release-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.release-year {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

/* Platforms Section */
.platforms-section {
    background: var(--primary-black);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.platform-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.platform-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-2);
    color: var(--text-primary);
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: visible;
}

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

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

/* Social Section */
.social-section {
    background: var(--dark-bg);
}

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

.social-btn {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    flex-shrink: 0;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-btn svg,
.social-btn span {
    position: relative;
    z-index: 2;
}

.social-btn svg {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    margin-bottom: 5px;
    display: block;
    overflow: visible;
    flex-shrink: 0;
}

.social-btn span {
    font-size: 0.7rem;
    font-weight: 600;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--purple);
    box-shadow: 0 10px 30px rgba(176, 38, 255, 0.4);
}

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

/* Instagram blocked label */
.social-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
}

.social-btn-wrapper .social-btn {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    overflow: visible;
}

.blocked-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.75;
    font-style: italic;
    max-width: 85px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    padding: 0 4px;
    letter-spacing: 0.02em;
}

.blocked-label-footer {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.8;
    font-style: italic;
    display: inline-block;
    margin-left: 4px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary-black);
}

.newsletter-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 30px;
    border: 2px solid var(--purple);
    text-align: center;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.subscribe-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
}

.subscribe-btn svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: block;
    overflow: visible;
}

.subscribe-btn:hover svg {
    transform: scale(1.1);
}


.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: var(--text-primary);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
}

.vk-btn {
    background: linear-gradient(135deg, #0077FF 0%, #4680C2 100%);
    color: var(--text-primary);
}

.vk-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 255, 0.4);
}


/* Final CTA Section */
.final-cta-section {
    background: var(--primary-black);
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 0;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0 0 10px 0;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-email {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    flex-shrink: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

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

.footer-legal a:hover {
    color: var(--purple);
}

/* Prevent extra scrollable space after footer */
footer.footer {
    margin-bottom: 0 !important;
    padding-bottom: 30px;
}

body > footer:last-of-type {
    margin-bottom: 0;
    padding-bottom: 30px;
}

/* Ensure no extra space after footer */
html {
    overflow-y: auto;
}

body {
    overflow-y: auto;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Remove any extra space that might cause scrolling */
body::after {
    display: none;
    content: '';
    height: 0;
    margin: 0;
    padding: 0;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .platform-buttons {
        gap: 12px;
        justify-content: center;
        overflow: visible;
        flex-wrap: wrap;
    }

    .platform-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
        min-height: 44px;
        box-sizing: border-box;
    }

    .platform-btn svg {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        display: block;
        overflow: visible;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    .section-subtitle {
        padding: 0 20px;
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .song-cover {
        min-height: 300px;
    }
    
    .song-cover-image {
        min-height: 300px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .cover-placeholder {
        min-height: 300px;
    }

    .release-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .release-title {
        font-size: 2rem;
    }

    .platforms-section {
        padding: 60px 0;
    }

    .platforms-section {
        padding: 60px 0;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        overflow: visible;
    }

    .platform-card {
        padding: 25px 15px;
        border-radius: 15px;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: visible;
    }

    .platform-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        min-height: 65px;
        font-size: 1.6rem;
        margin-bottom: 15px;
        flex-shrink: 0;
        overflow: visible;
    }

    .platform-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        text-align: center;
    }

    .platform-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
        text-align: center;
    }

    .social-btn {
        width: 75px;
        height: 75px;
        min-width: 75px;
        min-height: 75px;
        overflow: visible;
    }

    .social-btn svg {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        display: block;
        overflow: visible;
    }

    .social-grid {
        gap: 18px;
        overflow: visible;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-btn-wrapper {
        flex: 0 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom p,
    .footer-legal {
        width: 100%;
        justify-content: center;
    }

    .form-input-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 60px 20px;
    }

    .platform-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        min-width: auto;
        gap: 8px;
        min-height: 44px;
        box-sizing: border-box;
    }

    .platform-btn svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        display: block;
        overflow: visible;
    }

    .platform-btn span {
        display: inline;
        font-size: 0.8rem;
    }

    .platform-btn:active {
        transform: translateY(-1px) scale(0.98);
    }

    .platform-buttons {
        gap: 12px;
        justify-content: center;
        overflow: visible;
        flex-wrap: wrap;
    }

    .about-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .btn-secondary {
        background: linear-gradient(135deg, #0077FF 0%, #4680C2 100%);
        box-shadow: 0 5px 20px rgba(0, 119, 255, 0.3);
    }

    .btn-primary {
        background: linear-gradient(135deg, #FC3F1D 0%, #E63900 100%);
        box-shadow: 0 5px 20px rgba(252, 63, 29, 0.3);
    }

    .social-btn {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        box-shadow: 0 4px 15px rgba(176, 38, 255, 0.2);
        overflow: visible;
    }

    .social-btn svg {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        transition: transform 0.3s ease;
        display: block;
        overflow: visible;
    }

    .social-btn:active {
        transform: translateY(-2px) scale(0.95);
    }

    .social-btn:active svg {
        transform: scale(1.1);
    }

    .social-btn span {
        font-size: 0.65rem;
    }

    .social-grid {
        gap: 15px;
        overflow: visible;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-btn-wrapper {
        flex: 0 0 auto;
    }

    .platforms-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }

    .section-subtitle {
        padding: 0 20px;
        font-size: 0.95rem;
        margin-bottom: 35px;
        line-height: 1.5;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        overflow: visible;
    }

    .platform-card {
        padding: 30px 20px;
        border-radius: 15px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .platform-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
        font-size: 1.8rem;
        margin-bottom: 15px;
        box-shadow: 0 5px 20px rgba(176, 38, 255, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: visible;
    }

    .platform-card:active {
        transform: scale(0.98);
    }

    .platform-card:active .platform-icon {
        transform: scale(0.95);
    }

    .platform-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .platform-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
    }

    .song-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .song-cover {
        min-height: 280px;
        aspect-ratio: 1;
    }
    
    .song-cover-image {
        min-height: 280px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .cover-placeholder {
        min-height: 280px;
        width: 100%;
        height: 100%;
    }

    .subscribe-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .subscribe-btn svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        display: block;
        overflow: visible;
    }


    .subscribe-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    .footer-legal a {
        font-size: 0.9rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}



