* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --secondary: #f093fb;
    --secondary-dark: #f5576c;
    --accent: #4fd1c7;
    --dark: #1a202c;
    --darker: #0f1419;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4fd1c7 0%, #319795 100%);
    --gradient-dark: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--light);
    background: var(--darker);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.7);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-instagram {
    background: var(--gradient-secondary);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

.btn-youtube:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
    background: #cc0000;
}

/* Logo Container */
.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maffa-logo {
    width: 320px;
    height: 320px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 
        0 0 80px rgba(102, 126, 234, 0.8),
        0 0 150px rgba(102, 126, 234, 0.5),
        0 0 200px rgba(102, 126, 234, 0.3);
    animation: 
        float 6s ease-in-out infinite,
        glow 3s ease-in-out infinite alternate,
        breathe 4s ease-in-out infinite;
    filter: brightness(1.3) contrast(1.2) saturate(1.2);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.logo-fallback {
    display: none;
}

.maffa-logo[style*="display: none"] + .logo-fallback {
    display: block;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, rgba(102, 126, 234, 0) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 2;
    filter: blur(20px);
}

.vinyl {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #1a202c, #2d3748);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.vinyl-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-label {
    width: 40%;
    height: 40%;
    background: var(--dark);
    border-radius: 50%;
    border: 2px solid var(--light);
}

.vinyl-shadow {
    position: absolute;
    bottom: -20px;
    width: 250px;
    height: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    filter: blur(10px);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0% {
        box-shadow: 
            0 0 80px rgba(102, 126, 234, 0.8),
            0 0 150px rgba(102, 126, 234, 0.5),
            0 0 200px rgba(102, 126, 234, 0.3);
    }
    100% {
        box-shadow: 
            0 0 100px rgba(102, 126, 234, 1),
            0 0 180px rgba(102, 126, 234, 0.7),
            0 0 250px rgba(102, 126, 234, 0.4);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gray);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Bio Section */
.bio {
    padding: 120px 0 80px 0;
    background: var(--dark);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bio-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-text .lead {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.bio-text p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 2rem;
}

.bio-image {
    position: relative;
}

.image-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 50%;
    right: -20px;
    animation-delay: 2s;
}

.floating-element.element-3 {
    bottom: -20px;
    left: 50%;
    animation-delay: 4s;
}

/* SOCIAL PROOF COMPACT - AGGIORNATO CON 5 FONTI */
.social-proof-compact {
    background: rgba(255,255,255,0.02);
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.compact-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.compact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s;
}

.compact-stat:hover::before {
    left: 100%;
}

.compact-stat:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}

.compact-stat i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.compact-stat .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    line-height: 1;
}

.compact-stat .label {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Music Section */
.music {
    padding: 120px 0;
    background: var(--darker);
}

/* Traxsource Player Section */
.traxsource-player-section {
    margin-bottom: 4rem;
}

.traxsource-player-section h3 {
    text-align: center;
    color: var(--light);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TRAXSOURCE PLAYER ENHANCED STYLES */
.player-container-enhanced {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.player-container-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.player-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.player-logo i {
    font-size: 1.3rem;
}

.player-actions {
    display: flex;
    gap: 0.5rem;
}

.player-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--light);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.player-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.iframe-container {
    position: relative;
    min-height: 240px;
    background: rgba(0,0,0,0.2);
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 32, 44, 0.9);
    z-index: 10;
    transition: opacity 0.5s ease;
}

.iframe-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.iframe-loader .loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.iframe-loader p {
    color: var(--gray);
    font-size: 1rem;
    text-align: center;
}

.player-container-enhanced iframe {
    display: block;
    border: none;
    width: 100%;
    height: 240px;
    transition: opacity 0.5s ease;
}

.player-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.player-stats {
    color: var(--primary);
    font-weight: 500;
}

.player-credit {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Fullscreen mode */
.player-container-enhanced.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    border-radius: 0;
    margin: 0;
}

.player-container-enhanced.fullscreen .iframe-container {
    height: calc(100% - 120px);
}

.player-container-enhanced.fullscreen iframe {
    height: 100%;
}

/* Pulse animation for container */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-color: rgba(255,255,255,0.1);
    }
    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
        border-color: rgba(102, 126, 234, 0.4);
    }
}

.player-container-enhanced.pulse {
    animation: pulse-glow 3s ease-in-out infinite;
}

.view-more {
    text-align: center;
}

/* Compact Stores Grid */
.stores-section {
    text-align: center;
}

.stores-section h3 {
    color: var(--gray-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stores-grid-compact {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.store-card-compact {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem 0.8rem;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    flex: 1;
    max-width: 120px;
}

.store-card-compact:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.store-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

/* Icone FontAwesome per Spotify e SoundCloud */
.store-card-compact.spotify .store-icon i,
.store-card-compact.soundcloud .store-icon i {
    font-size: 2rem;
}

.store-card-compact.spotify .store-icon i { color: #1db954; }
.store-card-compact.soundcloud .store-icon i { color: #ff8800; }

.store-card-compact span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

/* YouTube Section - PULITA E SEMPLICE */
.youtube {
    padding: 120px 0;
    background: var(--dark);
}

.youtube-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* YouTube Playlist Styles */
.youtube-playlist-section {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.playlist-header h3 {
    color: var(--light);
    font-size: 1.5rem;
    margin: 0;
}

.playlist-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.youtube-player {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

.youtube-player iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

.youtube-info {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.youtube-info p {
    color: var(--gray);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.youtube-info i {
    color: var(--primary);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card.featured {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(1);
}

.service-card.featured:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.service-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-description {
    color: var(--gray-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--accent);
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-cta p {
    margin-bottom: 1.5rem;
    color: var(--light);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-message {
    margin-bottom: 3rem;
}

.contact-message h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-message p {
    color: var(--gray);
    line-height: 1.8;
}

.instagram-cta {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ig-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.ig-text h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.ig-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    color: var(--light);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.social-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.1);
}

.social-card i {
    font-size: 1.5rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2);
}

.social-card.facebook i { color: #1877f2; }
.social-card.instagram i { color: #e4405f; }
.social-card.soundcloud i { color: #ff8800; }
.social-card.youtube i { color: #ff0000; }
.social-card.beatport .social-icon img { filter: brightness(1.5); }
.social-card.spotify i { color: #1db954; }

/* Footer */
.footer {
    background: var(--darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand h3 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--accent);
    font-style: italic;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .compact-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .compact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .store-card-compact {
        min-width: 80px;
        padding: 0.8rem 0.5rem;
    }
    
    .maffa-logo {
        width: 250px;
        height: 250px;
    }
    
    .logo-glow {
        width: 320px;
        height: 320px;
    }
    
    /* YouTube Responsive */
    .youtube-player iframe {
        height: 300px;
    }
    
    .playlist-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Back to Top responsive */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Player responsive */
    .player-header {
        padding: 0.8rem 1rem;
    }
    
    .player-footer {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .player-logo {
        font-size: 1rem;
    }
    
    .iframe-loader p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .compact-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .compact-stat .number {
        font-size: 1.3rem;
    }
    
    .stores-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-player iframe {
        height: 250px;
    }
    
    .maffa-logo, .vinyl {
        width: 200px;
        height: 200px;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .player-container-enhanced {
        border-radius: 10px;
    }
    
    .player-header {
        padding: 0.6rem 0.8rem;
    }
    
    .player-logo span {
        display: none;
    }
    
    .player-logo i {
        font-size: 1.5rem;
    }
}