/* ============================================ */
/* =========== LAYOUT / FOOTER STICKING =========== */
/* ============================================ */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.content-wrapper {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.content-wrapper > * {
    flex-shrink: 0;
}

.content-wrapper > :last-child {
    flex-grow: 1;
}

footer {
    flex-shrink: 0;
    margin-top: auto !important;
}

/* -------------------------------------------------------
   26. LANGUAGE SWITCHER
   ------------------------------------------------------- */
.lang-active {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 10px rgba(255,215,0,0.6);
}

.lang-inactive {
    color: #aaa !important;
}

.lang-inactive:hover {
    color: var(--sw-yellow) !important;
}

/* -------------------------------------------------------
   27. ABOUT PAGE — all sections
   ------------------------------------------------------- */

/* About Hero */
.about-hero,
.story-section,
.vision-mission-section,
.experimental-section,
.future-section,
.team-section {
    background: var(--sw-black) !important;
    background-image: none !important;
}

.story-section {
    padding: 80px 0 !important;
    min-height: auto !important;
}

.about-hero {
    padding: 30px 0 !important;
}

.about-hero {
    background: radial-gradient(ellipse at 70% 50%, #3B2D00 0%, #1A1A1A 60%, #0D0D0D 100%) !important;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.about-hero h1 {
    color: var(--sw-yellow) !important;
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(255,215,0,0.4);
}

.about-hero-subtitle {
    color: var(--sw-yellow) !important;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-hero p {
    color: var(--sw-white-soft) !important;
}


.about-hero-image img {
    
    /* box-shadow: 0 16px 48px rgba(255,215,0,0.18); */
}

/* Story card */
.story-card {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid #FFD700 !important;
    border-radius: 28px !important;
    padding: 56px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Ensure all content inside story card is centered */
.story-card .story-content {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.story-card .story-text {
    width: 100% !important;
    max-width: 900px !important;
}

.story-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 70px rgba(0,0,0,0.8), 0 0 80px rgba(255,215,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12) !important;
    border-color: #FFE066 !important;
}

.story-card h2 {
    color: var(--sw-yellow) !important;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

.story-text .lead {
    color: var(--sw-white-soft) !important;
    font-size: 1.2rem;
    line-height: 1.9;
}

.story-text p {
    color: var(--sw-white-soft) !important;
}

/* Key points */
.point-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 14px 20px;
    background: rgba(255,215,0,0.08);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
}

.point-icon {
    font-size: 1.6rem;
}

.point-text {
    color: var(--sw-white-soft) !important;
    font-weight: 500;
}

/* Founder */
.founder-image,
.story-card .founder-image,
section .founder-image {
    background: linear-gradient(145deg, #2A2A2A 0%, #1E1E1E 100%) !important;
    border: 2px solid rgba(255,215,0,0.5) !important;
    border-radius: 20px !important;
    padding: 32px 24px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 36px rgba(255,215,0,0.08) !important;
}

.image-wrapper {
    background: transparent !important;
    border: none !important;
}

.founder-photo {
    border: 4px solid var(--sw-yellow) !important;
    box-shadow: 0 0 32px rgba(255,215,0,0.35) !important;
}

.founder-circle-img {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    object-fit: cover;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.4s ease;
}

.founder-circle-img:hover {
    transform: translateY(-10px);
}

.founder-image-container {
    padding: 0;
    display: inline-block;
    position: relative;
}

.founder-image-container::after {
    display: none !important;
}

.founder-description-small {
    font-size: 0.9rem !important;
    color: #aaa !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.founder-info-card {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.image-decoration {
    display: none !important;
}

h3.founder-name,
.founder-image h3 {
    color: var(--sw-yellow) !important;
    margin-top: 20px;
}

.founder-title {
    color: #aaa !important;
    font-size: 0.95rem;
}

.founder-quote {
    background: rgba(255,215,0,0.1) !important;
    border-left: 4px solid var(--sw-yellow) !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 16px 24px !important;
    margin-top: 16px;
}

.founder-quote p {
    color: #ddd !important;
    font-style: italic;
    margin: 0;
}

/* Vision & Mission cards */
.vision-card,
.mission-card {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid #FFD700 !important;
    border-radius: 24px !important;
    padding: 48px !important;
    text-align: center;
    box-shadow: 0 18px 52px rgba(0,0,0,0.7), 0 0 52px rgba(255,215,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 23px 65px rgba(0,0,0,0.8), 0 0 70px rgba(255,215,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12) !important;
    border-color: #FFE066 !important;
}

.vision-card .card-icon,
.mission-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-card .card-icon i,
.mission-card .card-icon i {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.vision-card h3,
.mission-card h3 {
    color: var(--sw-yellow) !important;
    font-weight: 700;
    margin-bottom: 12px;
}

.vision-card p,
.mission-card p {
    color: var(--sw-white-soft) !important;
    line-height: 1.8;
}

/* Experimental section */
.experimental-section .section-header h2 {
    color: var(--sw-yellow) !important;
}

.experimental-section .section-header p {
    color: #bbb !important;
}

/* Future section */
.future-card {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid #FFD700 !important;
    border-radius: 28px !important;
    padding: 56px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.future-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 25px 70px rgba(0,0,0,0.8), 0 0 80px rgba(255,215,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12) !important;
    border-color: #FFE066 !important;
}

.future-card h2 {
    color: var(--sw-yellow) !important;
    font-weight: 800;
    margin-bottom: 28px;
}

.future-card p,
.future-content p {
    color: var(--sw-white-soft) !important;
    line-height: 1.9;
}

.future-goals li {
    color: var(--sw-white-soft) !important;
    margin-bottom: 12px;
    padding-left: 8px;
}

.future-goals li::marker {
    color: var(--sw-yellow);
    font-size: 1.2rem;
}

.future-image img {
    border: 2px solid var(--sw-border) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 36px rgba(255,215,0,0.15) !important;
}

/* Team section */
.team-section .section-header h2 {
    color: var(--sw-yellow) !important;
}

.team-section .section-header p {
    color: #bbb !important;
}

.team-member {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(145deg, #2A2A2A 0%, #1E1E1E 100%) !important;
    border: 2px solid rgba(255,215,0,0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 36px rgba(255,215,0,0.08) !important;
    transition: none !important;
}

.team-member img {
    border: 4px solid var(--sw-yellow) !important;
    width: 120px;
    height: 120px;
    object-fit: cover;
    box-shadow: 0 0 24px rgba(255,215,0,0.3) !important;
    margin-bottom: 18px;
}

.team-member h4 {
    color: var(--sw-yellow) !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.team-role {
    color: #aaa !important;
    font-size: 0.95rem;
}

/* -------------------------------------------------------
   28. ALTERNATING SECTION DIVIDER GLOW
   ------------------------------------------------------- */
.story-section,
.vision-mission-section,
.future-section {
    background: #1D1D1D !important;
}

/* -------------------------------------------------------
   29. GLOBAL SECTION TITLE UNDERLINE
   ------------------------------------------------------- */
.section-title::after,
h2.section-title::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
    height: 3px;
}
/* ========================================================
   SHARPNER WORLD — BLACK & YELLOW MASTER THEME OVERRIDE
   Black background · Yellow headings · White body text
   Loaded last → highest priority across all pages
   ======================================================== */


/* -------------------------------------------------------
   1. ROOT TOKENS
   ------------------------------------------------------- */
:root {
    --sw-black:       #1A1A1A;
    --sw-black-2:     #202020;
    --sw-black-card:  #242424;
    --sw-black-input: #2D2D2D;
    --sw-yellow:      #FFD700;
    --sw-yellow-dark: #F4B400;
    --sw-yellow-glow: rgba(255, 215, 0, 0.4);
    --sw-white:       #FFFFFF;
    --sw-white-soft:  #E8E8E8;
    --sw-border:      rgba(255, 215, 0, 0.4);
    --sw-font-main:   'Outfit', sans-serif;
}

/* Footer clean classes (replaces messy inline styles) */
.footer-copy {
    color: #F0F0F0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.footer-dev {
    font-size: 14px !important;
    color: #bbb !important;
}

.footer-dev a {
    color: #FFD700 !important;
    font-weight: 700 !important;
}

.footer-dev a:hover {
    color: #ffe066 !important;
    text-decoration: underline !important;
}


/* -------------------------------------------------------
   2. GLOBAL BODY & BASE
   ------------------------------------------------------- */
html, body {
    background-color: var(--sw-black) !important;
    color: var(--sw-white-soft) !important;
    font-family: var(--sw-font-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    flex-shrink: 0;
}

/* All plain text defaults */
p, li, span, label, td, th, small, blockquote, figcaption {
    color: var(--sw-white-soft) !important;
}

/* Headings → yellow */
h1, h2, h3, h4, h5, h6 {
    color: var(--sw-yellow) !important;
}

a {
    color: var(--sw-yellow) !important;
    text-decoration: none;
}
a:hover {
    color: #ffe680 !important;
    text-decoration: underline;
}

/* -------------------------------------------------------
   3. NAVBAR
   ------------------------------------------------------- */
.navbar,
nav.navbar {
    background: rgba(26, 26, 26, 0.8) !important;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: var(--sw-white-soft) !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.navbar-brand .logo-img {
    height: 100px !important;
    width: auto !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--sw-yellow) !important;
    background: rgba(255, 215, 0, 0.1) !important;
}

.navbar .nav-link.active {
    color: var(--sw-yellow) !important;
}

/* Toggler icon */
.navbar-toggler {
    border-color: var(--sw-yellow) !important;
}
.navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

/* Dropdown menus */
.dropdown-menu {
    background: #151515 !important;
    border: 1px solid var(--sw-border) !important;
}
.dropdown-item {
    color: var(--sw-white-soft) !important;
}
.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.15) !important;
    color: var(--sw-yellow) !important;
}

/* Language switcher */
.lang-switcher a {
    color: var(--sw-white-soft) !important;
}
.lang-switcher a.fw-bold {
    color: var(--sw-yellow) !important;
}

/* -------------------------------------------------------
   4. HERO SECTION
   ------------------------------------------------------- */
.hero {
    background: radial-gradient(ellipse at 70% 50%, #3B2D00 0%, #1A1A1A 60%, #0D0D0D 100%) !important;
    border-bottom: 3px solid var(--sw-yellow-dark) !important;
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

/* Subtle glowing yellow blob behind content */
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

/* Second glowing blob for more vibrancy */
.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 5s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 2px 4px rgba(0,0,0,0.8) !important;
    letter-spacing: -0.5px;
}

.hero h2,
.hero .hero-tagline-highlight {
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255,215,0,0.5) !important;
    font-style: italic;
}

.hero p {
    color: var(--sw-white-soft) !important;
}

/* Hero buttons — filled gold style */
.hero-btn,
.btn-audition,
.hero .btn {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 32px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.3px !important;
    padding: 12px 28px !important;
    transition: none !important;
    box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important;
}

.hero-btn:hover,
.btn-audition:hover,
.hero .btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    color: #000 !important;
    box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important;
    transform: none !important;
}

/* Hero video border */
.hero-video-wrapper {
    border: 3px solid var(--sw-yellow) !important;
    border-radius: 20px !important;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3) !important;
    background: #000 !important;
}

/* -------------------------------------------------------
   5. SECTION BACKGROUNDS (all sections → black variants)
   ------------------------------------------------------- */
section,
.features-section,
.channels-section,
.shorts-section,
.about-section,
.whatwedo-section,
.creative-lab-section,
.auditions-section,
.faq-section,
.collaboration-types-section,
.collaboration-form-section,
.lab-section,
.idea-section,
.collab-section,
#videos-section,
#shorts-section {
    background: var(--sw-black) !important;
    background-image: none !important;
    padding: 50px 0 !important;
}

/* Alternating sections — subtle gradient depth */
.features-section,
.whatwedo-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #202000 100%) !important;
}
.channels-section,
.faq-section {
    background: linear-gradient(180deg, #202000 0%, #1A1A1A 100%) !important;
}
.collaboration-types-section {
    background: #1E1E1E !important;
}

/* -------------------------------------------------------
   6. SECTION TITLES
   ------------------------------------------------------- */
.section-title,
.faq-heading,
h2.section-title {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 28px rgba(255,215,0,0.4), 0 2px 4px rgba(0,0,0,0.6) !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.section-title::after {
    background: var(--sw-yellow) !important;
}

.faq-subtitle {
    color: var(--sw-white-soft) !important;
}

/* -------------------------------------------------------
   7. CARDS (feature-item, channel-card, video-card, etc.)
   ------------------------------------------------------- */
.feature-item,
.feature-card,
.channel-card,
.video-card,
.audition-card,
.experiment-card,
.collaboration-card,
.about-section .about-card,
.audition-section,
.audition-container {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid #FFD700 !important;
    border-radius: 22px !important;
    color: var(--sw-white-soft) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.1), 0 0 56px rgba(255,215,0,0.2) !important;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) !important;
}

.feature-item:hover,
.feature-card:hover,
.channel-card:hover,
.video-card:hover,
.audition-card:hover,
.experiment-card:hover,
.collaboration-card:hover,
.about-section .about-card:hover,
.audition-section:hover,
.audition-container:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 56px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 72px rgba(255,215,0,0.3) !important;
    border-color: #FFE066 !important;
}

/* Icons inside feature items */
.feature-item i,
.feature-item .fas,
.feature-item .fab {
    color: var(--sw-yellow) !important;
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
    text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

.feature-item h5,
.feature-card h5,
.channel-card h4 {
    color: var(--sw-yellow) !important;
}

.feature-item p,
.feature-card p,
.channel-card p {
    color: var(--sw-white-soft) !important;
}

/* Followers badge */
.followers {
    color: var(--sw-yellow) !important;
    font-weight: 600;
}

/* -------------------------------------------------------
   8. FAQ SECTION
   ------------------------------------------------------- */
.faq-item {
    background: var(--sw-black-card) !important;
    border: 2px solid var(--sw-border) !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 24px rgba(0,0,0,0.5) !important;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 10px 32px rgba(255,215,0,0.15) !important;
    transform: translateY(-2px);
}

.faq-question {
    background: var(--sw-black-card) !important;
    color: var(--sw-yellow) !important;
    font-weight: 700 !important;
}

.faq-answer {
    color: var(--sw-white-soft) !important;
    background: var(--sw-black-card) !important;
}

/* FAQ image */
.faq-img {
    border: 2px solid var(--sw-border) !important;
    box-shadow: 0 10px 32px rgba(255,215,0,0.15) !important;
}

/* -------------------------------------------------------
   9. SHORTS & VIDEO CARDS
   ------------------------------------------------------- */
.short-item,
.short-title,
.video-title {
    color: var(--sw-white-soft) !important;
}

.short-title,
.video-title {
    color: var(--sw-yellow) !important;
}

.thumbnail-wrapper img,
.short-thumb img {
    border-radius: 16px;
    border: 2px solid var(--sw-border);
}

/* -------------------------------------------------------
   10. ABOUT SECTION
   ------------------------------------------------------- */
.about-section {
    background: var(--sw-black-2) !important;
}

.about-section .section-title,
.about-section h2 {
    color: var(--sw-yellow) !important;
}

.about-section .lead,
.about-section p {
    color: var(--sw-white-soft) !important;
}

/* -------------------------------------------------------
   11. BUTTONS (Global)
   ------------------------------------------------------- */
.btn-main {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    color: #000 !important;
    border: none !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important;
    border-radius: 32px !important;
    transition: none !important;
}

.btn-main:hover {
    background: linear-gradient(135deg, #FFD700 0%, #F4B400 100%) !important;
    color: #000 !important;
    box-shadow: 0 6px 24px rgba(255,215,0,0.45) !important;
    transform: none !important;
}

/* Keep admin/functional buttons readable */
.btn-primary   { background: #2563EB !important; color: #fff !important; border: none !important; }
.btn-secondary { background: #475569 !important; color: #fff !important; border: none !important; }
.btn-danger    { background: #DC2626 !important; color: #fff !important; border: none !important; }
.btn-warning   { background: var(--sw-yellow) !important; color: #000 !important; border: none !important; }
.btn-info      { background: #0891B2 !important; color: #fff !important; border: none !important; }
.btn-success   { background: #16A34A !important; color: #fff !important; border: none !important; }

/* Channel/social buttons */
.channel-links .btn-danger {
    background: #CC0000 !important;
    color: #fff !important;
}
.channel-links .btn-info {
    background: #C13584 !important;
    color: #fff !important;
}

/* -------------------------------------------------------
   12. NAVBAR — hero btn override (border-outline style)
   ------------------------------------------------------- */
.btn-audition span {
    color: inherit !important;
}

/* -------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------- */
footer,
.footer-compact {
    background: #141414 !important;
    border-top: 2px solid var(--sw-yellow-dark) !important;
    box-shadow: 0 -6px 36px rgba(255,215,0,0.12) !important;
    color: var(--sw-white-soft) !important;
}

.footer-full-width {
    background: #141414 !important;
    border-top: none !important;
    box-shadow: none !important;
    color: var(--sw-white-soft) !important;
}

.footer-full-width .brand-text {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 16px rgba(255,215,0,0.5) !important;
}

.footer-full-width p,
.footer-full-width .text-secondary {
    color: var(--sw-white-soft) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    background: transparent !important;
    padding: 4px 0 !important;
}

.footer-full-width .text-primary {
    color: var(--sw-yellow) !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.footer-full-width .footer-legal a {
    color: var(--sw-white-soft) !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 24px !important;
    padding: 6px 18px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-shadow: none !important;
    transition: all 0.2s ease !important;
}

.footer-full-width .footer-legal a:hover {
    color: #000 !important;
    background: var(--sw-yellow) !important;
}

.footer-full-width .footer-socials a {
    color: var(--sw-white-soft) !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid var(--sw-border) !important;
}

.footer-full-width .footer-socials a:hover {
    color: #000 !important;
    background: var(--sw-yellow) !important;
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 20px rgba(255,215,0,0.5) !important;
}

.footer-full-width .border-top.border-secondary {
    border-color: rgba(255,215,0,0.25) !important;
}

/* -------------------------------------------------------
   14. FORMS & INPUTS
   ------------------------------------------------------- */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea,
select {
    background: var(--sw-black-input) !important;
    color: var(--sw-white-soft) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    border-radius: 12px !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 0 4px rgba(255,215,0,0.2) !important;
    outline: none !important;
}

.form-control::placeholder,
textarea::placeholder,
input::placeholder {
    color: #777 !important;
}

label,
.form-label {
    color: var(--sw-yellow) !important;
    font-weight: 600 !important;
}

/* Audition/form sections */
.audition-section label {
    color: var(--sw-yellow) !important;
}

.audition-section input,
.audition-section select,
.audition-section textarea {
    background: var(--sw-black-input) !important;
    color: var(--sw-white-soft) !important;
    border: 2px solid var(--sw-border) !important;
}

.audition-section .form-check {
    background: #1a1a1a !important;
    border-color: var(--sw-border) !important;
}

/* -------------------------------------------------------
   15. TABLES
   ------------------------------------------------------- */
.table,
table {
    color: var(--sw-white-soft) !important;
    background: var(--sw-black-card) !important;
}

.table thead,
table thead {
    background: var(--sw-yellow) !important;
    color: #000 !important;
}

.table thead th,
table thead th {
    color: #000 !important;
}

.table tbody tr:hover,
table tbody tr:hover {
    background: rgba(255,215,0,0.1) !important;
}

.table td, .table th,
table td, table th {
    border-color: rgba(255,215,0,0.15) !important;
}

/* -------------------------------------------------------
   16. CARDS (Bootstrap .card)
   ------------------------------------------------------- */
.card {
    background: var(--sw-black-card) !important;
    border: 1px solid var(--sw-border) !important;
    color: var(--sw-white-soft) !important;
}

.card-header {
    background: rgba(255,215,0,0.1) !important;
    border-bottom: 1px solid var(--sw-border) !important;
    color: var(--sw-yellow) !important;
}

.card-title {
    color: var(--sw-yellow) !important;
}

.card-text, .card-body p {
    color: var(--sw-white-soft) !important;
}



/* -------------------------------------------------------
   17. ALERTS
   ------------------------------------------------------- */
.alert {
    background: #1a1a1a !important;
    border: 1px solid var(--sw-border) !important;
    color: var(--sw-white-soft) !important;
}

.alert-success { border-left: 4px solid #22c55e !important; }
.alert-danger   { border-left: 4px solid #ef4444 !important; }
.alert-warning  { border-left: 4px solid var(--sw-yellow) !important; }
.alert-info     { border-left: 4px solid #38bdf8 !important; }

/* -------------------------------------------------------
   SIDEBAR MENU COLOR OVERRIDES
   ------------------------------------------------------- */
.sidebar-menu a {
    color: #000000 !important;
}

.sidebar-menu a:hover {
    color: #000000 !important;
    background: transparent !important;
}

.sidebar-menu a.active {
    color: #837106 !important;
    background: transparent !important;
}

/* -------------------------------------------------------
   18. MODALS
   ------------------------------------------------------- */
.modal-content {
    background: var(--sw-black-card) !important;
    border: 2px solid var(--sw-border) !important;
    color: var(--sw-white-soft) !important;
}

.modal-header {
    border-bottom: 1px solid var(--sw-border) !important;
    background: rgba(255,215,0,0.08) !important;
}

.modal-header .modal-title {
    color: var(--sw-yellow) !important;
}

.modal-footer {
    border-top: 1px solid var(--sw-border) !important;
}

.btn-close {
    filter: invert(1) !important;
}

/* -------------------------------------------------------
   19. ABOUT PAGE
   ------------------------------------------------------- */
.about-section .about-card {
    background: var(--sw-black-card) !important;
    border: 1.5px solid var(--sw-border) !important;
}

.about-section .about-card .lead {
    color: var(--sw-yellow) !important;
}

.about-section .about-card p {
    color: var(--sw-white-soft) !important;
}

/* -------------------------------------------------------
   20. AUDITION PAGE
   ------------------------------------------------------- */
body.audition-page,
body.collaborate-page {
    background: var(--sw-black) !important;
}

/* -------------------------------------------------------
   21. CREATIVE LAB / EXPERIMENT CARDS
   ------------------------------------------------------- */
.experiment-card {
    background: var(--sw-black-card) !important;
    border: 2px solid var(--sw-border) !important;
}

.experiment-card h3,
.experiment-card h4,
.experiment-card h5 {
    color: var(--sw-yellow) !important;
}

.experiment-card p {
    color: var(--sw-white-soft) !important;
}

.experiment-number {
    background: var(--sw-yellow) !important;
    color: #000 !important;
}

/* -------------------------------------------------------
   22. TEXT UTILITIES — override Bootstrap's text colours
   ------------------------------------------------------- */
.text-dark  { color: var(--sw-yellow) !important; }
.text-muted { color: #aaa !important; }
.text-secondary { color: #bbb !important; }
.text-light { color: var(--sw-white-soft) !important; }

/* -------------------------------------------------------
   23. BORDERS & DIVIDERS
   ------------------------------------------------------- */
.border,
.border-top,
.border-bottom {
    border-color: rgba(255,215,0,0.2) !important;
}

hr {
    border-color: rgba(255,215,0,0.25) !important;
}

/* -------------------------------------------------------
   24. SCROLLBAR (webkit browsers)
   ------------------------------------------------------- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--sw-yellow-dark);
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--sw-yellow);
}

/* -------------------------------------------------------
   25. SELECTION HIGHLIGHT
   ------------------------------------------------------- */
::selection {
    background: rgba(255,215,0,0.4);
    color: #fff;
}

/* -------------------------------------------------------
   30. GLOBAL HOVER EFFECT OVERRIDES - NO TRANSITIONS
   ------------------------------------------------------- */
/* Disable all hover effects on cards from global.css */
.about-section .about-card:hover,
.audition-section:hover,
.audition-container:hover,
.collaboration-card:hover,
.creative-hero .card:hover,
.bg-light .card:hover,
section .card:hover,
.lab-activity-card:hover,
.story-card:hover,
.gallery-card:hover,
.channel-card:hover,
.feature-item:hover,
.video-card:hover,
.experiment-card:hover {
    transform: none !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,215,0,0.1), 0 0 40px rgba(255,215,0,0.08) !important;
    border-color: rgba(255,215,0,0.45) !important;
    background: linear-gradient(145deg, #2A2A2A 0%, #1E1E1E 100%) !important;
}

/* Disable hover image scale */
.gallery-card:hover img,
.story-card:hover .story-image img {
    transform: none !important;
}

/* Disable hover on navbar links too */
.navbar .nav-link:hover,
.navbar .nav-link:focus {
    background: rgba(255, 215, 0, 0.08) !important;
    transform: none !important;
}

/* Disable footer social hover animations */
.footer-full-width .footer-socials a:hover {
    transform: none !important;
}

/* Disable footer legal hover animations */
.footer-full-width .footer-legal a:hover {
    transform: none !important;
}

/* Disable hero video hover */
.hero-video-wrapper:hover {
    transform: none !important;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3) !important;
}

/* -------------------------------------------------------
   31. STRONG FOUNDER IMAGE OVERRIDES
   ------------------------------------------------------- */
/* Override all global.css founder styles completely */
html body .founder-image,
html body section .founder-image,
html body .story-card .founder-image,
html body div.founder-image {
    background: linear-gradient(145deg, #2A2A2A 0%, #1E1E1E 100%) !important;
    background-image: linear-gradient(145deg, #2A2A2A 0%, #1E1E1E 100%) !important;
    border: 2px solid rgba(255,215,0,0.5) !important;
    border-radius: 20px !important;
    padding: 32px 24px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 36px rgba(255,215,0,0.08) !important;
    position: relative !important;
    overflow: visible !important;
}

html body .founder-image::before,
html body .founder-image::after {
    display: none !important;
    content: none !important;
}

html body .founder-image:hover {
    transform: none !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 36px rgba(255,215,0,0.08) !important;
}

html body .founder-photo,
html body .founder-image .founder-photo {
    border: 4px solid var(--sw-yellow) !important;
    box-shadow: 0 0 32px rgba(255,215,0,0.35) !important;
    width: 200px !important;
    height: 200px !important;
}

html body .founder-photo:hover {
    transform: none !important;
    box-shadow: 0 0 32px rgba(255,215,0,0.35) !important;
}

html body .founder-image h3 {
    color: var(--sw-yellow) !important;
    font-family: var(--sw-font-main);
    font-size: 1.5rem !important;
}

html body .founder-title {
    color: #aaa !important;
    font-family: var(--sw-font-main);
    font-size: 0.95rem !important;
}

html body .founder-quote {
    background: rgba(255,215,0,0.1) !important;
    background-image: none !important;
    border-left: 4px solid var(--sw-yellow) !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 16px 24px !important;
    margin-top: 16px !important;
    color: #ddd !important;
    max-width: none !important;
}

html body .founder-quote::before,
html body .founder-quote::after {
    display: none !important;
    content: none !important;
}

html body .founder-quote p {
    color: #ddd !important;
    font-style: italic;
    margin: 0;
    font-family: var(--sw-font-main);
    font-size: 1rem !important;
}

html body .image-wrapper {
    background: transparent !important;
    border: none !important;
    position: relative !important;
}

html body .image-decoration {
    display: none !important;
}

/* -------------------------------------------------------
   32. REMOVE ALL RAINBOW GRADIENTS - REPLACE WITH YELLOW
   ------------------------------------------------------- */
/* Override ALL rainbow gradient underlines and borders */
html body .about-section .section-title::after,
html body .audition-section h3::after,
html body .section-header h2::after,
html body .form-title::after,
html body .gallery-hero h1::after,
html body section:not(.hero) h2::after,
html body .creative-hero h1::after,
html body [style*="linear-gradient"]::after,
html body *::after {
    background: var(--sw-yellow) !important;
    background-image: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

/* Specifically target the rainbow gradient patterns */
html body .about-section .section-title::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body .audition-section h3::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body .section-header h2::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body .form-title::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body .gallery-hero h1::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body section:not(.hero) h2::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

html body .creative-hero h1::after {
    background: linear-gradient(90deg, var(--sw-yellow), transparent) !important;
}

/* OVERRIDE RAINBOW GRADIENTS BY EXACT COLOR PATTERN */
html body .about-section .section-title::after,
html body .audition-section h3::after,
html body .section-header h2::after,
html body .form-title::after,
html body .gallery-hero h1::after,
html body section:not(.hero) h2::after,
html body .creative-hero h1::after {
    background: linear-gradient(90deg, #FFD700, transparent) !important;
    background-image: linear-gradient(90deg, #FFD700, transparent) !important;
}

/* Founder info cards cleaned */
.founder-info-card,
.team-info-card,
.final-line-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Founder images cleaned */
.founders-section img.founder-circle-img {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

/* -------------------------------------------------------
   34. STATS STYLES
   ------------------------------------------------------- */
.stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    color: var(--sw-yellow) !important;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.stat-label {
    display: block;
    color: var(--sw-white-soft) !important;
    font-size: 1rem;
    margin-top: 5px;
}

/* =============================================================
   33. EXPANDING PANELS HERO  (Sliding / Accordion Panels)
   Black & Yellow theme — matches site-wide design system
   ============================================================= */

/* ── Intro Overlay ──────────────────────────────────────────── */
.sw-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0D0D0D;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    animation: sw-intro-in 0.5s ease forwards;
    pointer-events: all;
}

@keyframes sw-intro-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.sw-intro-overlay--exit {
    animation: sw-intro-out 0.8s ease forwards !important;
}

@keyframes sw-intro-out {
    from { opacity: 1; transform: scale(1);    }
    to   { opacity: 0; transform: scale(1.04); }
}

.sw-intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: sw-logo-rise 0.7s 0.2s ease both;
}

@keyframes sw-logo-rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.sw-intro-logo-img {
    width: 320px;
    height: auto;
    object-fit: contain;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 30px rgba(255,215,0,0.3));
}

.sw-intro-title {
    color: var(--sw-yellow) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(255,215,0,0.7) !important;
    margin: 0 !important;
}

.sw-intro-sub {
    color: var(--sw-white-soft) !important;
    font-size: 1.05rem !important;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin: 0;
}

.sw-intro-bar {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sw-yellow), #F4B400);
    border-radius: 99px;
    animation: sw-bar-grow 2s 0.6s ease forwards;
    box-shadow: 0 0 16px rgba(255,215,0,0.6);
}

@keyframes sw-bar-grow {
    from { width: 0;    }
    to   { width: 280px; }
}

/* ── Panels Container ───────────────────────────────────────── */
.sw-panels-hero {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    background: #0D0D0D;
    border-bottom: 3px solid var(--sw-yellow-dark);
}

/* ── Individual Panel ───────────────────────────────────────── */
.sw-panel {
    position: relative;
    flex: 1 1 0;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.72s cubic-bezier(0.77, 0, 0.175, 1);
    clip-path: none;
}

/* Active panel expands */
.sw-panel--active {
    flex: 3.5 1 0;
}

/* ── Panel Background Image ─────────────────────────────────── */
.sw-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transition: transform 0.72s cubic-bezier(0.77, 0, 0.175, 1),
                filter   0.72s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scale(1);
    filter: brightness(0.55) saturate(0.8);
}

#panel-be-featured .sw-panel-bg,
#panel-dhol-pathak .sw-panel-bg,
#panel-talent-show .sw-panel-bg,
#panel-submit-idea .sw-panel-bg {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-position: center center;
}

.sw-panel--active .sw-panel-bg {
    transform: scale(1);
    filter: brightness(0.7) saturate(1);
    background-position: center top;
}

/* ── Dark overlay gradient ──────────────────────────────────── */
.sw-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.9) 100%
    );
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
    transition: opacity 0.72s ease;
    z-index: 1;
}

.sw-panel--active .sw-panel-overlay {
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.7) 0%,
        rgba(26,18,0,0.2) 40%,
        rgba(0,0,0,0.8) 100%
    );
}

/* Yellow glow line on left edge of active panel */
.sw-panel--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--sw-yellow), transparent);
    z-index: 3;
    box-shadow: 0 0 20px rgba(255,215,0,0.8);
    animation: sw-line-flash 1.2s ease both;
}

@keyframes sw-line-flash {
    from { opacity: 0; height: 0%;   }
    to   { opacity: 1; height: 100%; }
}

/* ── Panel Label (horizontal text on closed panels) ───────── */
.sw-panel-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--sw-yellow) !important;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: pre-line;
    text-align: center;
    text-shadow: 0 0 20px rgba(255,215,0,0.6);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.sw-panel--active .sw-panel-label {
    opacity: 0;
}

/* ── Panel Content (text + button) ─────────────────────────── */
.sw-panel-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s 0.15s ease, transform 0.5s 0.15s ease;
    pointer-events: none;
}

.sw-panel--active .sw-panel-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sw-panel-icon {
    font-size: 3.2rem;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 16px rgba(255,215,0,0.7));
    animation: sw-icon-pop 0.5s 0.3s both;
}

@keyframes sw-icon-pop {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.sw-panel-title {
    color: var(--sw-yellow) !important;
    font-size: clamp(1.3rem, 2.2vw, 2.2rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(255,215,0,0.7), 0 2px 8px rgba(0,0,0,0.9) !important;
    margin-bottom: 16px !important;
    line-height: 1.15;
}

.sw-panel-desc {
    color: rgba(232,232,232,0.92) !important;
    font-size: 1rem !important;
    max-width: 340px;
    line-height: 1.7;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.sw-panel-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--sw-yellow) 0%, var(--sw-yellow-dark) 100%);
    color: #000 !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    letter-spacing: 1px;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 6px 28px rgba(255,215,0,0.4), 0 0 0 0 rgba(255,215,0,0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 2px solid transparent;
}

.sw-panel-btn:hover {
    box-shadow: 0 10px 40px rgba(255,215,0,0.6), 0 0 0 8px rgba(255,215,0,0.1) !important;
    transform: translateY(-5px) !important;
    color: #000 !important;
    border-color: #fff;
    text-decoration: none !important;
}

/* Guidelines Section Styles for Black & Yellow Theme */
.guidelines-section {
    background: var(--sw-black) !important;
}

.guidelines-container {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid var(--sw-yellow) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

.guidelines-title {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 28px rgba(255,215,0,0.4), 0 2px 4px rgba(0,0,0,0.6) !important;
}

.guideline-item {
    background: var(--sw-black-card) !important;
    border-left: 4px solid var(--sw-yellow) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,215,0,0.3) !important;
    border-left-width: 4px !important;
}

.guideline-text {
    color: var(--sw-white-soft) !important;
}

.guideline-icon {
    color: var(--sw-yellow) !important;
}



/* Alert Styles */
.alert {
    background: var(--sw-black-card) !important;
    border: 2px solid var(--sw-yellow) !important;
    border-radius: 16px !important;
    color: var(--sw-white-soft) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.alert-success {
    border-color: #22c55e !important;
}

.alert-success strong {
    color: #22c55e !important;
}

.alert .btn-close {
    filter: invert(1) !important;
}

/* Idea Submission Form Styles */
.submission-form-section {
    background: var(--sw-black) !important;
    position: relative;
    z-index: 1;
}

.submission-form-section .form-container {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid var(--sw-yellow) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    position: relative;
    z-index: 10;
}

.submission-form-section .form-title {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 28px rgba(255,215,0,0.4), 0 2px 4px rgba(0,0,0,0.6) !important;
}

.submission-form-section .optional-fields {
    background: rgba(255,215,0,0.05) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border: 1px solid rgba(255,215,0,0.2) !important;
}

.submission-form-section .optional-title {
    color: var(--sw-yellow) !important;
}

.submission-form-section .radio-group {
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
}

.submission-form-section .radio-label {
    color: var(--sw-white-soft) !important;
}

/* Form Controls (Input & Textarea) Styling */
.submission-form-section input,
.submission-form-section textarea,
.submission-form-section select,
.submission-form-section .form-control {
    pointer-events: auto !important;
    z-index: 20 !important;
    position: relative !important;
    cursor: text !important;
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    color: var(--sw-white-soft) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
}

.submission-form-section input::placeholder,
.submission-form-section textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}

.submission-form-section input:focus,
.submission-form-section textarea:focus {
    outline: none !important;
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.2) !important;
}

/* Labels */
.submission-form-section .form-label {
    color: var(--sw-yellow) !important;
}

/* Small text */
.submission-form-section .form-text {
    color: rgba(255,255,255,0.7) !important;
}

/* Required asterisk */
.submission-form-section .required {
    color: #ef4444 !important;
}

/* Radio buttons */
.submission-form-section input[type="radio"] {
    accent-color: var(--sw-yellow) !important;
    width: 20px !important;
    height: 20px !important;
}

/* ============================================ */
/* =========== COLLABORATION PAGE =========== */
/* ============================================ */
.audition-form-container {
    background: var(--sw-black) !important;
    padding: 20px 0 !important;
}

.audition-form-container .card {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid var(--sw-yellow) !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(255,215,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

.audition-form-container .card-header {
    background: rgba(255,215,0,0.05) !important;
    border-bottom: 2px solid var(--sw-yellow) !important;
    color: var(--sw-yellow) !important;
    font-weight: 700;
}

.audition-form-container .form-control {
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    color: var(--sw-white-soft) !important;
    border-radius: 12px !important;
}

.audition-form-container .form-control:focus {
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 0 3px rgba(255,215,0,0.2) !important;
}

.audition-form-container .form-label {
    color: var(--sw-yellow) !important;
}

.audition-form-container .text-muted {
    color: rgba(255,255,255,0.7) !important;
}

.audition-form-container .text-danger {
    color: var(--sw-danger) !important;
}

.audition-form-container .btn-warning {
    background: var(--sw-yellow) !important;
    color: var(--sw-black) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}

.audition-form-container .btn-warning:hover {
    box-shadow: 0 0 30px rgba(255,215,0,0.5) !important;
}

.audition-form-container .alert-warning {
    background: rgba(255,215,0,0.1) !important;
    border: 2px solid var(--sw-yellow) !important;
    color: var(--sw-white-soft) !important;
}

.audition-form-container .section-title {
    color: var(--sw-yellow) !important;
}

/* ============================================ */
/* =========== IDEA SUBMISSION PAGE =========== */
/* ============================================ */
.idea-hero {
    background: radial-gradient(ellipse at 70% 50%, #3B2D00 0%, #1A1A1A 60%, #0D0D0D 100%) !important;
    padding: 100px 0 !important;
}

.idea-hero .hero-content h1 {
    color: var(--sw-yellow) !important;
    text-shadow: 0 0 30px rgba(255,215,0,0.5) !important;
}

.idea-hero .hero-subtitle {
    color: var(--sw-white-soft) !important;
}

.idea-hero .btn-main,
.idea-hero .btn-secondary {
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.idea-hero .btn-main {
    background: var(--sw-yellow) !important;
    color: var(--sw-black) !important;
    border: none !important;
}

.idea-hero .btn-main:hover {
    box-shadow: 0 0 30px rgba(255,215,0,0.6) !important;
    transform: translateY(-3px) !important;
}

.idea-hero .btn-secondary {
    background: transparent !important;
    color: var(--sw-yellow) !important;
    border: 2px solid var(--sw-yellow) !important;
}

.idea-hero .btn-secondary:hover {
    background: rgba(255,215,0,0.1) !important;
}

.about-idea-section {
    background: var(--sw-black) !important;
}

.about-idea-section h2 {
    color: var(--sw-yellow) !important;
}

.about-idea-section .about-text {
    color: var(--sw-white-soft) !important;
}

.about-idea-section .benefit-item {
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    border-radius: 16px !important;
    padding: 20px 40px !important;
    margin: 10px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.about-idea-section .benefit-icon {
    color: var(--sw-yellow) !important;
    font-size: 1.5rem !important;
    margin-right: 10px !important;
}

.about-idea-section .benefit-text {
    color: var(--sw-white-soft) !important;
}

.about-idea-section .benefit-item:hover {
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 20px rgba(255,215,0,0.3) !important;
}

.submission-form-section .btn-submit {
    background: var(--sw-yellow) !important;
    color: var(--sw-black) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 50px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

.submission-form-section .btn-submit:hover {
    box-shadow: 0 0 30px rgba(255,215,0,0.6) !important;
    transform: translateY(-3px) !important;
}

/* ============================================ */
/* =========== MOBILE RESPONSIVENESS =========== */
/* ============================================ */
@media (max-width: 991px) {
    /* Global spacing */
    section {
        padding: 40px 15px !important;
    }
    
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    /* Idea submission hero */
    .idea-hero {
        padding: 60px 15px !important;
    }
    
    /* Buttons */
    .idea-hero .btn-main,
    .idea-hero .btn-secondary {
        width: 100% !important;
        margin: 8px 0 !important;
        display: block !important;
    }
    
    /* Benefits section */
    .about-idea-section .benefits {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .about-idea-section .benefit-item {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Form fields */
    .submission-form-section .form-group,
    .audition-form-container .form-group {
        margin-bottom: 20px !important;
    }
    
    /* Radio groups */
    .radio-group {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    /* Footer */
    footer .d-flex {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    /* Collaborate form cards */
    .audition-form-container .card {
        margin-bottom: 20px !important;
    }
    
    /* Form submit button */
    .submission-form-section .btn-submit,
    .audition-form-container .btn-submit-audition,
    .audition-form-container .btn-warning {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    /* Even smaller screens */
    h1 {
        font-size: 1.8rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    /* Hero content */
    .hero-content,
    .about-content {
        padding: 0 10px !important;
    }
    
    /* Form containers */
    .form-container,
    .guidelines-container,
    .disclaimer-container {
        padding: 20px !important;
    }
    
    /* Guidelines items */
    .guidelines-list .guideline-item {
        padding: 15px !important;
    }
}

/* Navbar mobile styles */
@media (max-width: 991px) {
    .navbar .container {
        padding: 0 15px !important;
    }
    
    .navbar-brand .logo-img {
        max-height: 50px !important;
    }
    
    .navbar-nav {
        padding: 20px 0 !important;
    }
    
    .nav-item {
        padding: 8px 0 !important;
    }
    
    /* Hero panels stack vertically on mobile */
    .sw-panels-hero {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
    }
    
    .sw-panel {
        width: 100% !important;
        min-height: 300px !important;
        flex: 0 0 300px !important;
    }
    
    .sw-panel-label {
        bottom: 15px !important;
        right: 15px !important;
        font-size: 1.2rem !important;
    }
    
    .sw-panel-title {
        font-size: 1.5rem !important;
    }
    
    .sw-panel-desc {
        font-size: 1rem !important;
    }
    
    .sw-panel-btn {
        font-size: 1rem !important;
        padding: 12px 24px !important;
    }
}

@media (max-width: 576px) {
    .sw-panel {
        min-height: 250px !important;
        flex: 0 0 250px !important;
    }
    
    .sw-panels-tagline {
        padding: 20px !important;
        text-align: center !important;
    }
    
    .sw-tagline-text {
        font-size: 1rem !important;
    }
}

/* ============================================ */
/* =========== SHORTS SECTION STYLES =========== */
/* ============================================ */
.shorts-section {
    background: var(--sw-black) !important;
}

.shorts-wrapper {
    display: flex !important;
    gap: 30px !important;
    overflow-x: auto !important;
    padding-bottom: 20px !important;
    scrollbar-width: thin !important;
}

.shorts-wrapper::-webkit-scrollbar {
    height: 8px !important;
}

.shorts-wrapper::-webkit-scrollbar-thumb {
    background: var(--sw-yellow) !important;
    border-radius: 4px !important;
}

.short-item {
    min-width: 280px !important;
    max-width: 320px !important;
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255, 215, 0, 0.3) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.short-item:hover {
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3) !important;
    transform: translateY(-5px) !important;
}

.short-thumb {
 width: calc(100% - 30px) !important;
    aspect-ratio: 9/16 !important;
    background: linear-gradient(145deg, #2A2A2A, #1E1E1E) !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    margin: 15px !important;
    position: relative !important;
}

.short-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.short-title {
    color: var(--sw-white-soft) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 0 15px 20px !important;
    margin: 0 !important;
}

/* ============================================ */
/* =========== VIDEO CARDS STYLES =========== */
/* ============================================ */
#videos-section {
    background: var(--sw-black) !important;
}

.video-card {
    background: var(--sw-black-card) !important;
    border: 2px solid rgba(255,215,0,0.3) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.video-card:hover {
    border-color: var(--sw-yellow) !important;
    box-shadow: 0 0 30px rgba(255,215,0,0.3) !important;
    transform: translateY(-5px) !important;
}

.thumbnail-wrapper {
    width: calc(100% - 30px) !important;
    aspect-ratio: 16/9 !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    margin: 15px !important;
}

.thumbnail-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.video-title {
    color: var(--sw-white-soft) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 0 15px 20px !important;
}

/* Mobile video styles */
@media (max-width: 991px) {
    .thumbnail-wrapper {
        margin: 10px !important;
    }
}

/* Mobile shorts styles */
@media (max-width: 991px) {
    .shorts-wrapper {
        gap: 20px !important;
    }
    
    .short-item {
        min-width: 240px !important;
        max-width: 280px !important;
    }
}

@media (max-width: 576px) {
    .shorts-wrapper {
        gap: 15px !important;
    }
    
    .short-item {
        min-width: 200px !important;
        max-width: 240px !important;
    }
    
    .short-thumb {
        margin: 10px !important;
    }
}

/* Disclaimer Section Styles */
.disclaimer-section {
    background: var(--sw-black) !important;
}

.disclaimer-container {
    background: linear-gradient(135deg, #1F1F1F 0%, #0D0D0D 50%, #1F1F1F 100%) !important;
    border: 3px solid var(--sw-yellow) !important;
    border-radius: 24px !important;
}

.disclaimer-title {
    color: var(--sw-yellow) !important;
}

.disclaimer-text {
    color: var(--sw-white-soft) !important;
}

/* ── Navigation Dots ────────────────────────────────────────── */
.sw-panels-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.sw-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,215,0,0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.sw-dot--active {
    background: var(--sw-yellow);
    border-color: var(--sw-yellow);
    box-shadow: 0 0 12px rgba(255,215,0,0.7);
    transform: scale(1.3);
}

/* ── Tagline overlay ─────────────────────────────────────────── */
.sw-panels-tagline {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
    padding: 8px 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 15px rgba(255,215,0,0.1);
}

.sw-tagline-text {
    color: var(--sw-yellow) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px;
    text-shadow: 0 0 12px rgba(255,215,0,0.5);
}

/* ── Bottom Section Divider Glow ────────────────────────────── */
.sw-panels-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sw-yellow), transparent);
    z-index: 20;
    box-shadow: 0 0 20px rgba(255,215,0,0.6);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sw-panels-hero {
        height: 70vh;
        min-height: 420px;
    }

    .sw-panel-desc {
        display: none;
    }

    .sw-panel-title {
        font-size: 1.3rem !important;
    }

    .sw-panel-btn {
        padding: 10px 24px;
        font-size: 0.85rem !important;
    }

    .sw-panel-icon {
        font-size: 2.2rem;
    }

    .sw-hero-nav-buttons {
        flex-wrap: wrap;
    }

    .sw-nav-btn {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255,215,0,0.12);
    }

    .sw-intro-title {
        font-size: 2rem !important;
    }

    .sw-intro-logo-img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 480px) {
    .sw-panels-hero {
        height: 60vh;
    }

    .sw-panel-side-label span {
        font-size: 0.6rem !important;
        letter-spacing: 2px;
    }

    .sw-nav-btn {
        flex: 1 1 50%;
        padding: 16px 8px;
    }

    .sw-nav-btn-label {
        font-size: 0.72rem !important;
    }
}

/* Override: hero section no longer needs old radial bg */
section.hero {
    display: none !important;
}

