.about-wrapper {
    background-color: var(--bg);
    color: var(--text);
    padding-top: var(--header-h);
}

.hero-bg-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: grayscale(100%);
    opacity: 0.3;
}

.about-hero {
    position: relative;
    z-index: 2;
    padding: 140px 0 60px;
    text-align: center;
}

.hero-title-animate {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: revealUp 1.2s var(--ease-out) forwards;
}

.hero-title-animate .shiny-green {
    font-size: 1.2em;
}

.hero-intro-animate {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    animation: revealUp 1.2s var(--ease-out) 0.3s forwards;
}

.artistes-section {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 80px;
}

.artistes-list-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.artist-card {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.artist-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(20, 20, 24, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.4s;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-avatar i {
    font-size: 2.5rem;
    color: var(--accent);
}

.artist-card h3 {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
}

.artist-card:hover .artist-avatar, 
.artist-card.active .artist-avatar {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.artist-card.active h3 { color: var(--accent); }

.luxury-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--muted), transparent);
    margin: 0;
}

.tracks-section {
    padding: 80px 0;
    background: var(--bg);
}

.filter-info {
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tracks-list-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.track-item {
    background: var(--panel);
    border: 1px solid var(--muted);
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.track-inner {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 25px;
}

.track-cover {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-content { flex: 1; }

.artist-badge {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: block;
}

.track-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.track-desc {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 15px;
}

.track-platforms { display: flex; gap: 15px; }
.track-platforms a {
    font-size: 1.3rem;
    color: #fff;
    opacity: 0.5;
    transition: 0.3s;
}
.track-platforms a:hover { opacity: 1; color: var(--accent); }

.team-cta-section {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--muted);
}

.cta-content-wrapper .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.btn-premium-action {
    display: inline-block;
    padding: 20px 40px;
    background: var(--accent);
    color: #000;
    font-weight: 900;
    border-radius: 50px;
    transition: 0.4s;
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .track-inner { flex-direction: column; text-align: center; }
    .track-cover { width: 100%; height: auto; aspect-ratio: 1/1; }
    .track-platforms { justify-content: center; }
}