/* Design System and Variables */
:root {
    --bg-dark: #05070F;
    --bg-card: #0d0f22;
    --bg-nav: rgba(5, 7, 15, 0.85);
    
    --primary-gold: #D4AF37;
    --gold-hover: #ebd07b;
    --gold-dark: #aa841c;
    
    --color-terracotta: #C85A32;
    --color-sahara: #E3B85A;
    --color-night: #05070F;
    --color-desert-sunset: linear-gradient(135deg, #05070F 0%, #150E28 35%, #4C1C24 70%, #C85A32 100%);
    
    --text-primary: #F4F1EA;
    --text-muted: #a0a3b5;
    
    --border-color: rgba(212, 175, 55, 0.2);
    --border-hover: rgba(212, 175, 55, 0.5);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}

/* Global Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Core Bilingual Class Toggles */
[data-lang="en"] {
    display: inline;
}
[data-lang="ha"] {
    display: none !important;
}

body.lang-ha [data-lang="en"] {
    display: none !important;
}
body.lang-ha [data-lang="ha"] {
    display: inline !important;
}

/* Specific Block translations toggle */
div[data-lang="en"], section[data-lang="en"], p[data-lang="en"], .letter-content[data-lang="en"] {
    display: block;
}
body.lang-ha div[data-lang="en"], 
body.lang-ha section[data-lang="en"], 
body.lang-ha p[data-lang="en"], 
body.lang-ha .letter-content[data-lang="en"] {
    display: none !important;
}

div[data-lang="ha"], section[data-lang="ha"], p[data-lang="ha"], .letter-content[data-lang="ha"] {
    display: none !important;
}
body.lang-ha div[data-lang="ha"], 
body.lang-ha section[data-lang="ha"], 
body.lang-ha p[data-lang="ha"], 
body.lang-ha .letter-content[data-lang="ha"] {
    display: block !important;
}

/* Section Header standard styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.header-line {
    width: 180px;
    height: 12px;
    background: 
        linear-gradient(135deg, var(--primary-gold) 25%, transparent 25%) -6px 0,
        linear-gradient(225deg, var(--primary-gold) 25%, transparent 25%) -6px 0,
        linear-gradient(45deg, var(--primary-gold) 25%, transparent 25%),
        linear-gradient(315deg, var(--primary-gold) 25%, var(--bg-dark) 25%);
    background-size: 12px 12px;
    margin: 15px auto 25px;
    border: none;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphic Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-nav);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: var(--bg-dark);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.arewa-knot-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
}

.logo:hover .arewa-knot-icon {
    transform: rotate(45deg);
    color: var(--gold-hover);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .arewa-knot-icon {
    width: 38px;
    height: 38px;
}

.footer-logo h3 {
    margin-bottom: 0 !important;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Bilingual Toggle Switch styling */
.lang-toggle-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

body.lang-en .lang-label:first-child {
    color: var(--primary-gold);
}

body.lang-ha .lang-label:last-child {
    color: var(--primary-gold);
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    transition: .4s;
    border-radius: 4px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    bottom: 4px;
    background-color: var(--primary-gold);
    transition: .4s;
    border-radius: 0;
    transform: rotate(45deg);
}

input:checked + .slider {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

input:checked + .slider:before {
    transform: translateX(24px) rotate(45deg);
    background-color: var(--gold-hover);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070F;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-columns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    overflow: hidden;
}

.hero-column {
    position: relative;
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: grayscale(50%) brightness(30%);
    border-right: 1px solid rgba(212, 175, 55, 0.08);
}

.hero-column:last-child {
    border-right: none;
}

.hero-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 7, 15, 0.1) 0%, rgba(5, 7, 15, 0.5) 100%);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.hero-column:hover {
    flex: 1.35;
    filter: grayscale(0%) brightness(60%);
}

.hero-column:hover::after {
    background: linear-gradient(to bottom, rgba(5, 7, 15, 0) 0%, rgba(5, 7, 15, 0.3) 100%);
}

.column-text {
    position: absolute;
    top: 220px;
    left: 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: rgba(244, 241, 234, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-column:hover .column-text {
    color: var(--primary-gold);
    letter-spacing: 5px;
}

.hero-column:last-child .column-text {
    left: auto;
    right: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(5, 8, 22, 0.05) 0%, rgba(5, 8, 22, 0.75) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 0 24px;
}

.hero-pretitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-gold);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: 12px;
    color: var(--text-primary);
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.85);
    margin-bottom: 8px;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-primary);
    max-width: 620px;
    margin: 0 auto 35px auto;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    background-color: transparent;
    color: var(--text-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* High Premium Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.about-card {
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
}

.letter-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 2px;
}

.role-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.quote-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 15px;
}

.letter-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 15px;
}

.letter-content p:last-child {
    margin-bottom: 0;
}

/* Cast Section & Interactive Grid */
.cast-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.cast-card {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cast-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.cast-img-wrapper {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.cast-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.cast-card:hover .cast-img-wrapper img {
    transform: scale(1.05);
}

.cast-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.95) 0%, rgba(5, 8, 22, 0.5) 60%, rgba(5, 8, 22, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cast-role-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.cast-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Crew Section & Tabs */
.crew-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.crew-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.crew-tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.crew-tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.crew-tab-btn.active {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.crew-content-box {
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    min-height: 350px;
}

.crew-letter-pane {
    display: none;
}

.crew-letter-pane.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.crew-intro-meta {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.crew-tagline {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary-gold);
    line-height: 1.4;
}

.crew-body p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.crew-body p:last-child {
    margin-bottom: 0;
}

/* Custom Teaser Video Section */
.teaser-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.custom-video-player {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
    background-color: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.custom-video-player:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-overlay-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.9) 0%, rgba(5, 8, 22, 0.3) 100%);
}

.play-btn-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    z-index: 5;
    transition: var(--transition-smooth);
}

.custom-video-player:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.8);
}

.video-text-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 4;
}

.video-series-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.video-meta-tagline {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Details Popups */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 8, 22, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: linear-gradient(135deg, #0d1024 0%, #060816 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    height: 100%;
    min-height: 500px;
    max-height: 85vh;
}

.modal-image-container {
    height: 100%;
    background-color: #000;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-container {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 85vh;
}

.modal-char-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.modal-char-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.modal-char-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-gold);
    margin-bottom: 15px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 15px;
}

.modal-actor-socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.socials-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-scroll-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-section h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-section h4 i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.info-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.brand-section {
    background-color: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 6px;
}

/* Footer styling */
.footer {
    background-color: #03040c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.links-col ul {
    list-style: none;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.links-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.partner-link:hover {
    color: var(--gold-hover);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 5rem;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        max-height: 80vh;
    }
    
    .modal-image-container {
        height: 250px;
    }
    
    .modal-info-container {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        display: none; /* Mobile side-drawer would go here */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-bg-columns {
        flex-direction: column;
    }

    .hero-column {
        display: none;
    }

    .hero-column:nth-child(3) {
        display: block;
        width: 100%;
        height: 100%;
        flex: none;
        filter: grayscale(40%) brightness(30%);
    }
    
    .crew-tabs {
        flex-direction: column;
    }
    
    .crew-content-box {
        padding: 25px;
    }
    
    .crew-tagline {
        font-size: 1.3rem;
    }
}

/* ==========================================
   NEW SECTIONS: MAP, BTS & COMMUNITY
   ========================================== */

/* Locations Map Styles */
.locations-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.map-wrapper {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(5, 7, 15, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

.arewa-svg-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-region-path {
    transition: var(--transition-smooth);
}

.map-region-path:hover {
    fill: rgba(212, 175, 55, 0.03);
    stroke: var(--border-hover);
}

.map-marker {
    cursor: pointer;
}

.marker-dot {
    fill: var(--primary-gold);
    transition: var(--transition-smooth);
}

.marker-glow {
    fill: rgba(212, 175, 55, 0.2);
    animation: markerPulse 2s infinite ease-in-out;
    transform-origin: center;
}

.map-marker:hover .marker-dot,
.map-marker.active .marker-dot {
    fill: var(--text-primary);
    r: 9px;
}

.map-marker:hover .marker-glow,
.map-marker.active .marker-glow {
    fill: rgba(212, 175, 55, 0.5);
    animation-duration: 1s;
}

.marker-label {
    fill: var(--text-primary);
    font-size: 13px;
    font-weight: 700;
    text-anchor: middle;
    letter-spacing: 1px;
    pointer-events: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.map-marker:hover .marker-label,
.map-marker.active .marker-label {
    fill: var(--primary-gold);
    font-size: 14px;
    opacity: 1;
}

@keyframes markerPulse {
    0% { transform: scale(0.6); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.6); opacity: 0.2; }
}

.location-details-card {
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.location-hub-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.location-scene {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-hover);
    margin-bottom: 25px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 15px;
}

.location-notes-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.location-notes-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* BTS Gallery Styles */
.bts-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.bts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.bts-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    min-height: 250px;
}

.bts-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bts-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
    transition: var(--transition-smooth);
}

.bts-card:hover .bts-img {
    transform: scale(1.03);
}

.bts-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(5, 7, 15, 0.95) 0%, rgba(5, 7, 15, 0.4) 60%, rgba(5, 7, 15, 0) 100%);
}

.bts-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 5px;
    display: block;
}

.bts-caption {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.text-bts-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--border-color);
    background: transparent;
}

.bts-quote-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.bts-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.bts-quote-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    font-weight: 700;
}

/* Community Hub Styles */
.community-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.community-card {
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
}

.community-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.community-card h3 i {
    font-size: 1.2rem;
}

.testimonial-scroller {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.testimonial-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background-color: rgba(255, 255, 255, 0.02);
}

.test-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 10px;
}

.test-user {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 700;
}

.fan-action-box {
    text-align: center;
}

.social-widget-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.widget-post {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    padding: 20px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.widget-post:hover {
    border-color: var(--border-color);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.post-meta i {
    font-size: 1rem;
}

.post-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   RESPONSIVENESS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    .bts-grid {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Badges for Cast members */
.cast-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Interview details section styling */
.interview-section {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    margin-top: 10px;
}

/* Leaflet Custom Styles */
.leaflet-container {
    background-color: var(--bg-dark) !important;
    font-family: var(--font-body) !important;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: linear-gradient(135deg, #0d1024 0%, #060816 100%) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
    border-radius: 6px !important;
}

.leaflet-popup-content {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin: 12px 18px !important;
}

.leaflet-popup-content h4 {
    font-family: var(--font-heading) !important;
    color: var(--primary-gold) !important;
    margin-bottom: 4px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.leaflet-popup-close-button {
    color: var(--text-muted) !important;
}

.leaflet-popup-close-button:hover {
    color: var(--primary-gold) !important;
}

/* Press Kit Styles */
.press-kit-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.press-kit-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    align-items: center;
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.5);
}

.press-info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.press-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.press-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.press-features-list li i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.press-download-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.download-main-icon {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

.press-download-box .btn {
    width: 100%;
    margin-bottom: 15px;
}

.download-meta-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Episodes Section */
.episodes-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.episode-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.episode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.episode-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0.005) 100%);
}

.episode-card:hover::before {
    background-color: var(--primary-gold);
}

.episode-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    opacity: 0.8;
}

.episode-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.episode-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 4px;
    width: max-content;
}

.status-released {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.status-upcoming {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
}

.episode-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #03050c;
}

.contact-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background: linear-gradient(145deg, #0d0f22 0%, #060817 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.contact-form {
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.required-star {
    color: #e04f4f;
    margin-left: 2px;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 6px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input option {
    background-color: #0c0e1e;
    color: var(--text-primary);
}

.form-input:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

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

.error-msg {
    color: #e04f4f;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
    height: 14px;
}

.btn-submit {
    padding: 14px 40px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Form Success Alert styling */
.form-alert-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0e1e;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 6px;
    padding: 30px;
    animation: fadeIn 0.4s ease forwards;
}

.success-alert-icon {
    font-size: 4rem;
    color: #2ec17c;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(46, 193, 124, 0.2));
}

.form-alert-success h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.form-alert-success p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 450px;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Custom Support Buttons */
.btn-patreon {
    background-color: #ff6b53;
    color: #ffffff;
    border: 1px solid #ff6b53;
}

.btn-patreon:hover {
    background-color: transparent;
    color: #ff6b53;
    border-color: #ff6b53;
    box-shadow: 0 0 15px rgba(255, 107, 83, 0.3);
}

.btn-coffee {
    background-color: #ffdd00;
    color: #000000;
    border: 1px solid #ffdd00;
    font-weight: 700;
}

.btn-coffee:hover {
    background-color: transparent;
    color: #ffdd00;
    border-color: #ffdd00;
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.3);
}

/* ==========================================
   RESPONSIVENESS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    .bts-grid {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .press-kit-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .press-download-box {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
        margin-top: 10px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-container {
        padding: 30px 20px;
    }
    .episodes-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SPONSORS & BRAND INTEGRATION SECTION
   ========================================== */
.sponsors-section {
    padding: 100px 0;
    background-color: #08090d;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    scroll-margin-top: 80px;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* Category Filter Tabs */
.sponsor-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 50px;
}

.sponsor-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sponsor-tab-btn i {
    color: var(--primary-gold);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.sponsor-tab-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-primary);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.sponsor-tab-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.sponsor-tab-btn.active i {
    color: #ffffff;
}

/* Sponsors Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.sponsor-card {
    background: linear-gradient(160deg, rgba(20, 23, 33, 0.8) 0%, rgba(10, 12, 18, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 35px 30px 25px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.sponsor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.1);
}

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

.sponsor-tier-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.sponsor-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(10, 12, 18, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.sponsor-icon-wrapper i {
    font-size: 1.6rem;
    color: var(--primary-gold);
}

.sponsor-card:hover .sponsor-icon-wrapper {
    background: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.sponsor-card:hover .sponsor-icon-wrapper i {
    color: #0b0c10;
}

.sponsor-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.sponsor-role {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.sponsor-tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sponsor-card-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.sponsor-card:hover .sponsor-card-footer {
    color: var(--primary-gold);
}

.sponsor-card:hover .sponsor-card-footer i {
    transform: translateX(5px);
}

/* Sponsor Partner Callout CTA */
.sponsor-partner-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(10, 12, 18, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.sponsor-partner-cta::after {
    content: '';
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-box i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.cta-content {
    flex-grow: 1;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cta-action {
    flex-shrink: 0;
}

/* Sponsor Detail Modal Styling */
.sponsor-modal-container {
    max-width: 650px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: linear-gradient(165deg, #10121a 0%, #08090d 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.15);
    max-height: 85vh;
    overflow-y: auto;
}

.sponsor-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.modal-icon-badge {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-icon-badge i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.sponsor-modal-tier {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 6px;
}

.sponsor-modal-name {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.sponsor-modal-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.sponsor-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.sponsor-modal-tagline {
    font-size: 1.05rem;
    color: var(--primary-gold);
    font-style: italic;
    line-height: 1.5;
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}

.modal-section-block h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-section-block h4 i {
    color: var(--primary-gold);
}

.modal-section-block p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight-block {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 18px;
    border-radius: 10px;
}

.modal-footer-action {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Sponsor Mobile Responsiveness */
@media (max-width: 768px) {
    .sponsor-partner-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .cta-icon-box {
        margin: 0 auto;
    }

    .cta-action {
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
        justify-content: center;
    }

    .sponsor-modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-icon-badge {
        margin: 0 auto;
    }

    .sponsor-modal-content {
        padding: 30px 20px;
    }
}


