:root {
    --bg-dark: #0D0D0D;
    --bg-darker: #050505;
    --text-white: #F0F0F0;
    --text-muted: #A0A0A0;
    --accent-primary: #788C8C;
    --accent-primary-hover: #96AAAA;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.accent-text {
    color: var(--accent-primary);
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600 !important;
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
}

/* Sections */
.section {
    padding: 8rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dark-bg {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(45deg, var(--bg-dark), #1a1a1a);
    /* For a real EPK, replace this background with a high-res image */
    background-image: radial-gradient(circle at center, rgba(120, 140, 140, 0.15) 0%, transparent 50%);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.hero .subtitle {
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.hero .title {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero .era {
    font-size: 1.5rem;
    letter-spacing: 8px;
    font-weight: 300;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--glass-bg);
    
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 140, 140, 0.3);
}

.accent-icon {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    width: 32px;
    height: 32px;
}

.stat-box h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}


.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-sub {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Campaigns Section */
.brands-marquee {
    overflow: hidden;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
    position: relative;
}

.brands-marquee::before, .brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.brand-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.brand-item:hover {
    color: var(--text-white);
    -webkit-text-stroke: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.campaign-card {
    text-align: center;
}

.placeholder-img {
    height: 180px;
    background: transparent !important;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    padding: 2rem;
}

.placeholder-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(300%);
    transition: filter 0.4s ease;
}

.campaign-card:hover .placeholder-img img {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.05);
}

.campaign-card:hover .placeholder-img {
    transform: scale(1.03);
    border-color: var(--accent-primary);
}

/* Music */
.music-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact */
.contact-card {
    background: var(--bg-darker);
    
    padding: 4rem 2rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 3rem auto 0;
}

.email-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-top: 1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-primary);
}

.email-link:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.social-icon:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .music-content {
        grid-template-columns: 1fr;
    }
    .campaign-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero .title {
        font-size: 3.5rem;
    }
    .campaign-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 5rem 0;
    }
}

.campaign-img img:not(.campaign-logo-img) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.brand-item-img {
    margin: 0 3rem;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(300%);
    opacity: 0.7;
    margin: 0 2rem;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}
.brand-item-img:hover {
    opacity: 1;
}
.campaign-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    z-index: 10;
    position: relative;
    mix-blend-mode: screen;
}
.campaign-img.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
}

.dark-mode-logo {
    filter: grayscale(100%) invert(100%);
    mix-blend-mode: screen;
}


.invert-logo {
    filter: invert(1) brightness(200%);
}



/* Press Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 2/3;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gallery-item:hover img {
    transform: scale(1.02);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


.brand-item-img.keep-color {
    filter: grayscale(0%) brightness(100%);
    mix-blend-mode: normal;
}

.force-white {
    filter: brightness(0) invert(1) !important;
}







.stat-card.flipped 







.demo-row {
    margin-bottom: 1rem;
}

.demo-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    display: block;
}

.demo-value {
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
}

.demo-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
    display: flex;
}

.demo-bar-fill {
    height: 100%;
    background: var(--text-white);
}

.demo-bar-fill.accent {
    background: #555;
}


/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-icon svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

#modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-row {
    display: flex;
    flex-direction: column;
}

.demo-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.demo-value {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 500;
}

.demo-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 0.75rem;
    overflow: hidden;
    display: flex;
}

.demo-bar-fill {
    height: 100%;
    background: var(--text-white);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-bar-fill.accent {
    background: #555;
}
