/* ============================================
   NOORUU OFFICIAL — Where Culture Meets Sound
   Inspired by Cinq Music Website
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4A017;
    --gold-light: #F0C648;
    --gold-dark: #A67C00;
    --dark: #0A0A0A;
    --dark-surface: #111111;
    --dark-card: #161616;
    --dark-border: #222222;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --gradient-left: rgba(139, 69, 19, 0.4);
    --gradient-right: rgba(120, 20, 20, 0.35);
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

button, input, textarea, select {
    cursor: none;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 160, 23, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-outline.hover {
    width: 56px;
    height: 56px;
    border-color: var(--gold);
}

/* ---------- Gradient Overlays ---------- */
.gradient-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(ellipse at left center, var(--gradient-left) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.gradient-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: radial-gradient(ellipse at right center, var(--gradient-right) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 70%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--gray-light);
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    color: var(--gold) !important;
}

.nav-logo {
    margin: 0 32px;
}

.logo-brand {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-brand:hover .nav-logo-img {
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    position: absolute;
    right: 20px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-logo {
    height: 80px;
    margin-bottom: 20px;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 60px 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-text-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-title-area {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.hero-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(56px, 10vw, 140px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 6px;
}

.hero-right-block {
    max-width: 380px;
    padding-top: 20px;
    flex-shrink: 0;
}

.hero-description {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 16px;
}

.hero-tagline-text {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.hero-media {
    flex: 1;
    margin-top: 10px;
}

.hero-video-container {
    position: relative;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

/* Hero Video */
.hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 5;
}

.video-sound-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 160, 23, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.video-sound-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.video-sound-btn:hover {
    background: rgba(212, 160, 23, 0.2);
    border-color: var(--gold);
}

.hero-media-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.release-date {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
}

.release-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-light);
}

.share-btn {
    background: none;
    border: 1px solid var(--dark-border);
    color: var(--gray-light);
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---------- Section Shared Styles ---------- */
section {
    position: relative;
    z-index: 2;
    padding: 100px 60px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.9;
}

.section-title .line {
    display: block;
    font-size: clamp(48px, 8vw, 120px);
}

.section-meta {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 1px;
}

/* ---------- Latest Releases — Thumbnail Cards ---------- */
.latest-releases {
    border-top: 1px solid var(--dark-border);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.release-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--white);
}

.release-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16 / 9;
    background: var(--dark-card);
}

.release-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.release-card:hover .release-thumb {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-icon-wrap {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

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

.play-icon {
    width: 100%;
    height: 100%;
}

.release-info {
    padding: 0 4px;
}

.release-date-sm {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.release-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.release-artist {
    font-size: 13px;
    color: var(--gray);
}

.view-all-wrap {
    text-align: center;
    margin-top: 48px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1px solid rgba(212,160,23,0.4);
    border-radius: 50px;
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(212,160,23,0.1);
    border-color: var(--gold);
    gap: 16px;
}

.view-all-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* ---------- Artists Section ---------- */
.artists-section {
    border-top: 1px solid var(--dark-border);
    padding-bottom: 60px;
}

.artists-scroll-container {
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) transparent;
}

.artists-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.artists-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.artists-scroll-container::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 2px;
}

.artists-track {
    display: flex;
    gap: 30px;
    min-width: max-content;
}

.artist-card {
    width: 280px;
    flex-shrink: 0;
}

.artist-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.artist-placeholder-img {
    width: 280px;
    height: 360px;
    background: linear-gradient(180deg, var(--dark-card) 0%, #18130d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-placeholder-img {
    transform: scale(1.05);
}

.artist-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.artist-info p {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* ---------- Services Section — Expandable Accordion ---------- */
.services-section {
    border-top: 1px solid var(--dark-border);
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-accord-item {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9) 0%, rgba(14, 12, 8, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-accord-item:hover {
    border-color: rgba(212, 160, 23, 0.15);
}

.service-accord-item.active {
    border-color: rgba(212, 160, 23, 0.25);
    background: linear-gradient(145deg, rgba(22, 20, 14, 0.95) 0%, rgba(14, 12, 8, 0.98) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(212, 160, 23, 0.04);
}

.service-accord-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    cursor: pointer;
    user-select: none;
    transition: padding 0.3s ease;
}

.service-accord-item.active .service-accord-header {
    padding-bottom: 20px;
}

.service-accord-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.5;
    min-width: 28px;
    transition: opacity 0.3s ease;
}

.service-accord-item.active .service-number,
.service-accord-item:hover .service-number {
    opacity: 1;
}

.service-icon {
    width: 44px;
    height: 44px;
    color: var(--gray);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.service-accord-item:hover .service-icon,
.service-accord-item.active .service-icon {
    color: var(--gold-light);
}

.service-accord-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.service-accord-item.active .service-accord-header h3 {
    color: var(--gold-light);
}

.service-accord-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-accord-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    transition: all 0.4s ease;
}

.service-accord-item.active .service-accord-toggle {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
    transform: rotate(45deg);
}

.service-accord-item.active .service-accord-toggle svg {
    stroke: var(--gold);
}

.service-accord-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-accord-item.active .service-accord-body {
    max-height: 500px;
}

.service-accord-content {
    padding: 0 36px 36px;
    padding-left: 100px;
}

.service-detail-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.service-detail-main {
    flex: 1;
}

.service-detail-intro {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 24px;
    border-left: 2px solid rgba(212, 160, 23, 0.3);
    padding-left: 16px;
}

.service-detail-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.detail-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
}

.detail-point strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.detail-point p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--gray);
}

.service-detail-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 24px;
    background: rgba(212, 160, 23, 0.05);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-big {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
    text-align: center;
}

/* ---------- About Section ---------- */
.about-section {
    border-top: 1px solid var(--dark-border);
}

.about-content {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
}

.about-left {
    flex: 0 0 45%;
}

.about-badge {
    display: inline-block;
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 8px 20px;
    border-radius: 20px;
}

.about-right {
    flex: 1;
    padding-top: 20px;
}

.about-text-large {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--white);
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 48px;
}

.about-stats {
    display: flex;
    gap: 60px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gray);
    text-transform: uppercase;
}

/* ---------- Marquee ---------- */
.about-vision {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.vision-marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.1;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- News Section — Enhanced Cards ---------- */
.news-section {
    border-top: 1px solid var(--dark-border);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.news-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(22, 22, 22, 0.9) 0%, rgba(14, 12, 8, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.news-card:hover {
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.news-featured {
    grid-column: span 2;
}

.news-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 160, 23, 0.04) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-card-bg {
    opacity: 1;
}

.news-card-content {
    position: relative;
    z-index: 2;
    padding: 36px;
}

.news-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.news-card:hover .news-icon-badge {
    background: rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.4);
}

.news-icon-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.news-category {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}

.news-card-content h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 14px;
}

.news-featured .news-card-content h3 {
    font-size: 26px;
}

.news-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.news-date {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1px;
}

.news-read-more {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.news-card:hover .news-read-more {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Submit / CTA Section ---------- */
.submit-section {
    border-top: 1px solid var(--dark-border);
    text-align: center;
    padding: 140px 60px;
    background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.04) 0%, transparent 60%);
}

.submit-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 500px;
    margin: 30px auto 40px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.submit-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(212, 160, 23, 0.2);
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* ---------- Partners & Sponsors Section ---------- */
.partners-section {
    border-top: 1px solid var(--dark-border);
}

.partners-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.partners-subtitle {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    max-width: 500px;
}

/* ── FEATURED PARTNER BANNER ── */
.partner-featured {
    margin-bottom: 48px;
}

.partner-featured-inner {
    background: linear-gradient(145deg, rgba(22, 20, 14, 0.7) 0%, rgba(14, 12, 8, 0.9) 100%);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.partner-featured-inner:hover {
    border-color: rgba(212, 160, 23, 0.4);
}

.partner-featured-inner::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at right, rgba(212, 160, 23, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 5px 14px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: 20px;
    background: rgba(212, 160, 23, 0.06);
}

.partner-featured-content {
    display: flex;
    align-items: center;
    gap: 52px;
    position: relative;
    z-index: 2;
}

/* Logo area — shows actual logo full color */
.partner-logo-area {
    flex-shrink: 0;
    width: 240px;
    height: 140px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.partner-featured-inner:hover .partner-logo-area {
    border-color: rgba(212, 160, 23, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    padding: 20px;
}

/* Full color logo — NO grayscale */
.partner-featured-logo {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(212, 160, 23, 0.3);
}

.partner-logo-placeholder span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 160, 23, 0.4);
}

.partner-featured-text {
    flex: 1;
}

.partner-featured-label {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.partner-featured-text h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.partner-featured-text p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 20px;
    max-width: 480px;
}

.partner-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.partner-perk {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--gold);
    padding: 4px 12px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 20px;
    background: rgba(212, 160, 23, 0.06);
}

.partner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.partner-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ── PARTNER GRID — Premium Cards ── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Real partner card */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 36px 24px 28px;
    background: linear-gradient(160deg, rgba(22, 22, 22, 0.6) 0%, rgba(14, 12, 8, 0.5) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    background: linear-gradient(160deg, rgba(30, 26, 14, 0.7) 0%, rgba(20, 16, 8, 0.6) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 160, 23, 0.08);
}

.partner-card:hover::before { opacity: 1; }

/* Logo container — full color, proper sizing */
.partner-card-logo-wrap {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 8px 16px;
}

/* Partner logo — full color, NO filter/opacity reduction */
.partner-card-logo {
    max-width: 160px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-card-logo {
    transform: scale(1.04);
}

/* Text initial for partners with no logo */
.partner-card-initial {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.04));
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.partner-card-info { width: 100%; }

.partner-card-name {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.partner-card-badge {
    display: inline-block;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    color: var(--gold);
}

/* Available slot */
.partner-card-available {
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.08);
    background: transparent;
}

.partner-card-available:hover {
    border-style: solid;
    border-color: rgba(212, 160, 23, 0.25);
}

.partner-card-plus {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
}

.partner-card-available:hover .partner-card-plus {
    border-color: rgba(212, 160, 23, 0.5);
    color: var(--gold);
    transform: scale(1.1) rotate(90deg);
}

.partner-card-available .partner-card-name {
    color: rgba(255, 255, 255, 0.35);
}

.available-badge {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
}

/* CTA at bottom */
.partners-cta-wrap {
    text-align: center;
    padding-top: 10px;
}

.partners-cta-wrap p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ---------- Contact Section ---------- */
.contact-section {
    border-top: 1px solid var(--dark-border);
}

.contact-content {
    display: flex;
    gap: 80px;
}

.contact-left {
    flex: 0 0 45%;
}

.contact-info {
    margin-top: 40px;
}

.contact-link {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 8px 16px;
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 8px;
}

.form-optional {
    text-transform: none;
    letter-spacing: 0;
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

/* File Upload */
.file-upload-wrap {
    position: relative;
}

.file-input-hidden {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-card);
    border: 1px dashed var(--dark-border);
    border-radius: 8px;
    color: var(--gray);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.file-upload-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--gold);
    opacity: 0.6;
}

.file-upload-btn.has-file {
    border-color: rgba(212, 160, 23, 0.3);
    color: var(--gold-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 16px 20px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    align-self: flex-start;
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.form-submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--dark);
}

.form-submit:hover svg {
    transform: translateX(4px);
    stroke: var(--dark);
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--dark-border);
    padding: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}

.footer-mid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--dark-border);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 13px;
    color: var(--gray);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.5px;
}

/* ---------- Animations ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title .line {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-title.visible .line {
    opacity: 1;
    transform: translateY(0);
}

.section-title.visible .line:nth-child(2) {
    transition-delay: 0.15s;
}

/* Stagger for cards */
.release-card,
.service-accord-item,
.news-card,
.artist-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.release-card.visible,
.service-accord-item.visible,
.news-card.visible,
.artist-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-card.visible:hover {
    transform: translateY(-4px);
}

/* ---------- Page Loading Animation ---------- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 10001;
    animation: pageReveal 1s ease forwards;
    pointer-events: none;
}

@keyframes pageReveal {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    section {
        padding: 80px 40px;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .service-accord-content {
        padding-left: 36px;
    }

    .service-detail-grid {
        flex-direction: column;
        gap: 24px;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .news-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .mobile-nav {
        display: flex;
    }

    section {
        padding: 60px 20px;
    }

    .hero {
        padding: 90px 20px 40px;
    }

    .hero-text-block {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-logo {
        height: 80px;
    }

    .hero-right-block {
        max-width: 100%;
    }

    .hero-title {
        white-space: normal;
    }

    .hero-video-wrapper {
        height: 260px;
    }

    .artist-card {
        width: 220px;
    }

    .artist-placeholder-img {
        width: 220px;
        height: 280px;
    }

    .hero-media-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .share-btn {
        align-self: flex-end;
    }

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

    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-mid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }

    .submit-section {
        padding: 80px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 18px;
    }

    .partner-featured-content {
        flex-direction: column;
        gap: 24px;
    }

    .partner-logo-placeholder {
        width: 100%;
    }

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

    .service-accord-header {
        padding: 16px;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .service-accord-left {
        gap: 10px;
        min-width: 0;
        flex: 1;
    }

    .service-accord-header h3 {
        font-size: 14px;
        letter-spacing: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-icon {
        width: 32px;
        height: 32px;
    }

    .service-number {
        font-size: 12px;
        min-width: 22px;
    }

    .service-accord-toggle {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .service-accord-content {
        padding: 0 20px 24px;
        padding-left: 20px;
    }

    .news-card-content {
        padding: 24px;
    }

    /* Disable custom cursor on mobile */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }

    a, button, input, textarea, select {
        cursor: auto;
    }
}

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

    .section-title .line {
        font-size: 36px;
    }

    .hero-right-block {
        max-width: 100%;
    }

    .news-featured .news-card-content h3 {
        font-size: 18px;
    }

    .about-vision {
        display: none;
    }
}

/* ========== Video Player Modal ========== */
.vp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 40px;
}
.vp-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.vp-container {
    width: 100%;
    max-width: 900px;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s ease;
}
.vp-overlay.show .vp-container {
    transform: translateY(0) scale(1);
}

.vp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.vp-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: 16px;
}
.vp-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.vp-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(22, 22, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-light);
}
.vp-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}
.vp-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.vp-frame-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.vp-frame-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.vp-artist {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.5px;
}
.vp-yt-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
    border: 1px solid var(--dark-border);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vp-yt-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.vp-yt-link svg {
    width: 14px;
    height: 14px;
}

/* ---- Mini Player (minimized) ---- */
.vp-mini {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    z-index: 9001;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(22, 22, 22, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.vp-mini.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.vp-mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: grab;
    user-select: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vp-mini-header:active {
    cursor: grabbing;
}
.vp-mini-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    margin-right: 8px;
}
.vp-mini-controls {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.vp-mini-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
}
.vp-mini-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.vp-mini-btn svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.vp-mini-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.vp-mini-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .vp-overlay {
        padding: 20px;
        align-items: flex-start;
        padding-top: 60px;
    }
    .vp-title { font-size: 14px; }
    .vp-footer { flex-direction: column; gap: 10px; align-items: flex-start; }

    .vp-mini {
        width: 280px;
        bottom: 16px;
        right: 16px;
    }
}
@media (max-width: 480px) {
    .vp-mini {
        width: calc(100% - 32px);
        right: 16px;
        left: 16px;
    }
}
