:root {
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --text-white: #ffffff;
    --text-muted: #a1a1aa;
    
    /* Underdawg Studio Brand Colors */
    --accent-purple: #A933D6;
    --heading-purple: #2E0B3B;
    --brand-yellow: #F5E100;
    --brand-light: #F4EBFF;
}

body {
    background-color: var(--brand-light);
    color: var(--heading-purple);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 800;
}

/* Custom Gradients - Brand Theme */
.text-gradient {
    background: linear-gradient(135deg, var(--heading-purple) 30%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 30%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--accent-purple), #8E24C1);
}

/* Glassmorphism Refined for Light Theme */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 11, 59, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 11, 59, 0.05);
    border-radius: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px -20px rgba(169, 51, 214, 0.2);
    transform: translateY(-8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--brand-light);
}
::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Buttons */
.btn-primary {
    background: var(--brand-yellow);
    color: var(--heading-purple);
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(245, 225, 0, 0.5);
}

/* Logo Loading Animation */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--brand-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--brand-light), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--brand-light), transparent);
}

/* Contrast Sections */
.bg-contrast {
    background-color: var(--heading-purple);
    color: #ffffff;
}

.bg-contrast .text-zinc-500 {
    color: rgba(255, 255, 255, 0.5);
}

.bg-contrast h1, .bg-contrast h2, .bg-contrast h3 {
    color: #ffffff;
}

/* Video Card Overlays */
.play-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-yellow);
    color: var(--heading-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover .play-icon {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(245, 225, 0, 0.4);
}

/* Swiper Custom styling */
.swiper {
    padding-bottom: 60px !important;
}

.swiper-button-next, .swiper-button-prev {
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--brand-yellow) !important;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--accent-purple) !important;
}

.swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}
