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

:root {
    --primary: #000;
    --secondary: #fff;
    --accent: #ff1493;
    --text: #1a1a1a;
    --light: #f8f8f8;
    --gray: #999;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--secondary);
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: var(--secondary);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.language-selector {
    display: flex;
    gap: 0.5rem;
    border-left: 1px solid #e0e0e0;
    padding-left: 2rem;
}

.lang-btn {
    background: none;
    border: 1px solid var(--gray);
    color: var(--gray);
    padding: 0.3rem 0.7rem;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 20, 147, 0.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: var(--secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

/* Hero Image Styles */
.hero-image-container {
    position: relative;
    margin-bottom: 2rem;
    cursor: pointer;
}

.hero-image {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image.colorized {
    filter: grayscale(0%);
}

/* Spotify Player */
.spotify-player {
    position: sticky;
    top: 70px;
    z-index: 99;
    background: var(--bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.line {
    width: 60px;
    height: 2px;
    background: var(--accent);
}

/* About Section */
.about {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--secondary);
    border: 1px solid #e0e0e0;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Music Section */
.music {
    background: var(--secondary);
}

.music-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.music-item {
    padding: 2rem;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-item:hover {
    padding-left: 2.5rem;
    background: var(--light);
}

.music-number {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.music-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery {
    background: var(--light);
}

.gallery-content {
    text-align: center;
    padding: 3rem 0;
}

.gallery-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.video-item {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    cursor: pointer;
}

.gallery-image:hover {
    filter: grayscale(80%);
}

.gallery-image.colorized {
    filter: grayscale(0%);
}

.gallery-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background: #000;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    cursor: pointer;
}

.gallery-video:hover {
    filter: grayscale(80%);
}

.gallery-video.colorized {
    filter: grayscale(0%);
}

.image-credit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    font-weight: 500;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
    color: #999;
}

.gallery-placeholder svg {
    margin-bottom: 1rem;
    color: #ccc;
}

.gallery-placeholder p {
    margin: 0;
    color: #999;
}

/* Social Media Section */
.social-media {
    background: var(--secondary);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: var(--text);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.social-link:hover {
    border-color: var(--primary);
    background: var(--light);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 2rem;
    color: var(--text);
    transition: color 0.3s ease;
}

.social-link:hover .social-icon {
    color: var(--accent);
}

.social-name {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.social-handle {
    font-size: 0.8rem;
    color: #999;
}

/* Contact Section */
.contact {
    background: var(--primary);
    color: var(--secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.contact-link {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--secondary);
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    border-color: var(--accent);
    background: rgba(255, 20, 147, 0.1);
}

.contact-link span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-link p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--secondary);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .music-list {
        grid-template-columns: 1fr;
    }

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

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

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .language-selector {
        border-left: none;
        padding-left: 0;
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }
}

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

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

.social-link.amazon-music {
    border: 1px solid #e0e0e0;
}

.social-link.amazon-music:hover {
    border-color: var(--accent);
    background: rgba(255, 20, 147, 0.1);
    transform: translateY(-5px);
}


/* Mini Music Player */
.mini-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.2);
    animation: slideUp 0.5s ease;
}

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

.play-btn {
    background: var(--accent);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.4);
}

.now-playing {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.spotify-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.1);
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.spotify-link:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .mini-player {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
    }
    
    .now-playing {
        max-width: 100px;
        font-size: 0.8rem;
    }
    
    .play-btn {
        width: 36px;
        height: 36px;
    }
}


/* Exclusive Radio Player */
.exclusive-radio-player {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 20px 30px;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px solid #ff1493;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
}

.radio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.radio-btn {
    background: transparent;
    border: 2px solid #ff1493;
    color: #ff1493;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.radio-btn:hover {
    background: #ff1493;
    color: #000;
    transform: scale(1.1);
}

.radio-btn.play-main {
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: #ff1493;
    color: #000;
}

.radio-btn.play-main:hover {
    background: #ff69b4;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #333;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff1493;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff1493;
    cursor: pointer;
    border: none;
}

.radio-info {
    flex: 1;
    color: #fff;
    text-align: center;
}

.radio-title {
    font-size: 12px;
    color: #ff1493;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.radio-song {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
    color: #fff;
}

/* Adjust body margin for radio player */
body {
    margin-top: 0;
}

.hero {
    margin-top: 100px;
}


/* Carousel Styles */
.carousel-item {
    cursor: pointer;
    position: relative;
}

.carousel-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 20, 147, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
}

.carousel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.carousel-main {
    flex: 1;
    position: relative;
    width: 100vw;
    height: 100vh;
}

.carousel-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.carousel-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}


/* Fullscreen Styles */
.fullscreen-item {
    cursor: pointer;
}

.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fullscreen-close {
    position: fixed;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
}
