/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide Scrollbar for all browsers */
html {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

*::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #3a3a3a;
    --light-gray: #6a6a6a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-glow: #4a4a4a;
    --neon-subtle: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Starry Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.star.small {
    width: 1px;
    height: 1px;
}

.star.medium {
    width: 2px;
    height: 2px;
}

.star.large {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--text-white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
}

.hero-logo:hover {
    transform: scale(1.08);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 255, 255, 0.15);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--neon-subtle);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    border-color: var(--text-white);
    box-shadow: 0 0 20px var(--neon-subtle);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Featured Section */
.featured-section {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.featured-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.album-cover {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    animation: spin 10s linear infinite;
    animation-play-state: paused;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.album-cover:hover img {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-cover:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.play-btn svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-black);
}

.play-btn.playing .play-icon {
    display: none;
}

.play-btn.playing .pause-icon {
    display: block !important;
}

.song-info {
    text-align: center;
}

.song-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.artist-name {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Audio Player */
.audio-player {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--text-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-black);
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-display {
    font-size: 0.9rem;
    color: var(--text-gray);
    min-width: 40px;
}

.progress-bar {
    flex: 1;
    position: relative;
    cursor: pointer;
    height: 6px;
    background: #3a3a3a;
    border-radius: 10px;
    padding: 12px 0;
    margin: -12px 0;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: white;
    border-radius: 10px;
    width: 0%;
    pointer-events: none;
    z-index: 10;
}

.progress-slider {
    display: none;
}

.progress-slider::-webkit-slider-thumb {
    display: none;
}

.progress-slider::-moz-range-thumb {
    display: none;
}

/* Volume Control */
.volume-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-hidden {
    display: flex;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

.volume-control {
    position: relative;
    display: flex;
    align-items: center;
    width: 80px;
    margin-left: 0.5rem;
}

.volume-slider {
    width: 100%;
    height: 4px;
    background: var(--medium-gray);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Platforms Section */
.platforms-section {
    background: var(--secondary-black);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.platform-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-white);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.platform-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-white);
}

.spotify-icon { background: #1DB954; }
.apple-icon { background: #FA243C; }
.youtube-music-icon { background: #FF0000; }
.youtube-icon { background: #FF0000; }
.amazon-icon { background: #00A8E1; }
.deezer-icon { background: #FF0092; }
.joox-icon { background: #00D9FF; }
.tidal-icon { background: #000000; border: 1px solid var(--text-white); }

.platform-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.platform-btn {
    padding: 8px 20px;
    background: var(--text-white);
    color: var(--primary-black);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-btn {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--secondary-black) 0%, var(--dark-gray) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-intro strong {
    color: var(--text-white);
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Members Section */
.members-section {
    background: var(--primary-black);
}

.team-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.team-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.team-item:hover {
    transform: translateX(10px);
    border-color: var(--text-white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.team-role {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.team-name {
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
    text-align: right;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Videos Section */
.videos-section {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.member-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: all 0.3s ease;
}

.member-card:hover .member-photo {
    border-color: var(--text-white);
    box-shadow: 0 0 20px var(--neon-subtle);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.member-role {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 20px 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-white);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: var(--primary-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--secondary-black);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.8rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .nav-logo {
        height: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .song-title {
        font-size: 1.8rem;
    }

    .featured-card {
        padding: 2rem 1.5rem;
    }

    .album-cover {
        width: 280px;
        height: 280px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn svg {
        width: 30px;
        height: 30px;
    }

    .about-intro {
        font-size: 1rem;
        text-align: left;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.2rem 1.5rem;
    }

    .team-role {
        font-size: 0.95rem;
    }

    .team-name {
        font-size: 1.1rem;
        text-align: center;
    }

    .platform-card {
        padding: 1rem 1.2rem;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .player-controls {
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
    }

    .progress-container {
        width: 100% !important;
        order: -1 !important;
        margin-bottom: 1rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
    }

    .progress-bar {
        height: 6px !important;
        padding: 15px 0 !important;
        margin: -15px 0 !important;
        background: #3a3a3a !important;
    }

    .progress-fill {
        height: 100% !important;
        top: 0 !important;
        background: white !important;
    }

    .time-display {
        font-size: 0.9rem !important;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .volume-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }

    .volume-control {
        width: 60px;
    }

    .platform-card {
        padding: 1rem 1.2rem;
    }

    .platform-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.3rem 0;
    }

    .nav-logo {
        height: 50px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .hero-section {
        padding: 80px 15px 40px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .featured-card {
        padding: 1.5rem 1rem;
    }

    .album-cover {
        width: 240px;
        height: 240px;
    }

    .song-title {
        font-size: 1.5rem;
    }

    .artist-name {
        font-size: 1rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn svg {
        width: 25px;
        height: 25px;
    }

    .audio-player {
        padding: 1.2rem 1rem !important;
    }

    .player-controls {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .progress-container {
        width: 100% !important;
        order: -1 !important;
        margin-bottom: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
    }

    .progress-bar {
        height: 8px !important;
        padding: 18px 0 !important;
        margin: -18px 0 !important;
        background: #3a3a3a !important;
    }

    .progress-fill {
        height: 100% !important;
        top: 0 !important;
        background: white !important;
    }

    .time-display {
        font-size: 0.9rem !important;
        min-width: 42px !important;
        flex-shrink: 0 !important;
    }

    /* Play button di tengah */
    .player-controls > .control-btn {
        order: 1 !important;
        width: 55px !important;
        height: 55px !important;
    }

    .player-controls > .control-btn svg {
        width: 24px !important;
        height: 24px !important;
    }

    /* Volume wrapper di bawah */
    .volume-wrapper {
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }

    .volume-wrapper .control-btn {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
    }

    .volume-wrapper .control-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    .volume-control {
        width: 100% !important;
        flex: 1 !important;
        margin-left: 0 !important;
    }

    .volume-slider {
        height: 6px !important;
        width: 100% !important;
    }

    .volume-slider::-webkit-slider-thumb {
        width: 16px !important;
        height: 16px !important;
    }

    .volume-slider::-moz-range-thumb {
        width: 16px !important;
        height: 16px !important;
    }

    .platform-card {
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .platform-icon {
        width: 35px;
        height: 35px;
    }

    .platform-icon svg {
        width: 20px;
        height: 20px;
    }

    .platform-name {
        font-size: 0.9rem;
    }

    .platform-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .about-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-card {
        padding: 1.5rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .about-card h3 {
        font-size: 1.3rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.2rem;
    }

    .team-item:hover {
        transform: translateY(-5px);
    }

    .team-role {
        font-size: 0.9rem;
    }

    .team-name {
        font-size: 1rem;
        text-align: center;
    }

    .platform-card {
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .member-photo {
        width: 130px;
        height: 130px;
    }

    .member-name {
        font-size: 1.2rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 15px 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .album-cover {
        width: 200px;
        height: 200px;
    }

    .song-title {
        font-size: 1.3rem;
    }

    .members-grid {
        gap: 1rem;
    }

    .videos-grid {
        gap: 1rem;
    }
}

/* Videos responsive */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-card {
        padding: 0.8rem;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}