/* ============================================
   WOMEN OF STRENGTH - PREMIUM DESIGN SYSTEM
   Full-Viewport Scroll-Snap PPT Style
   ============================================ */

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.05);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Accent Colors */
    /* Accent Colors - GK TMT BRAND */
    --accent-coral: #FFD700;
    /* Main Gold */
    --accent-rose: #D97706;
    /* Deep Amber */
    --accent-glow: #FCD34D;
    /* Golden Glow */
    --accent-gold: #F5F5F5;
    /* Steel White */

    --accent-gradient: linear-gradient(135deg, #FFD700 0%, #D97706 100%);
    --accent-gradient-glow: linear-gradient(135deg, #FCD34D 0%, #FFD700 100%);

    /* Glass Effect - More Pop */
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Lock horizontal scroll */
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* Prevent pull-to-refresh and overscroll */
    overscroll-behavior: none;
    /* Lock to viewport width */
    max-width: 100vw;
    width: 100%;
    position: relative;
}

/* Global horizontal lock wrapper */
#__next,
.scroll-container,
.slide,
.slide-content {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Touch action for mobile - restrict to vertical only */
@media (max-width: 768px) {

    html,
    body {
        touch-action: pan-y;
        -ms-touch-action: pan-y;
    }

    .scroll-container {
        touch-action: pan-y;
        -ms-touch-action: pan-y;
    }
}

/* ============================================
   FIXED TOP STRAPLINE
   ============================================ */
.strapline {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 24px;
    text-align: center;
}

.strapline p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* ============================================
   SCROLL CONTAINER - SNAP BEHAVIOR
   ============================================ */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.scroll-container::-webkit-scrollbar {
    width: 4px;
}

.scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-coral);
    border-radius: 2px;
}

/* ============================================
   SLIDES - FULL VIEWPORT SECTIONS
   ============================================ */
.slide {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 48px 48px;
    background: var(--bg-primary);
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SLIDE
   ============================================ */
.slide-hero {
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 215, 0, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(183, 28, 28, 0.2) 0%, transparent 50%),
        var(--bg-primary);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero-taglines {
    height: 40px;
    position: relative;
    margin-bottom: 64px;
}

.tagline {
    position: absolute;
    width: 100%;
    font-size: 1.25rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.tagline.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.hero-branding {
    position: absolute;
    bottom: 32px;
    right: 48px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-branding .accent {
    color: var(--accent-coral);
    font-weight: 500;
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.glass-card.large {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.lead-text {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    color: var(--text-secondary);
}

.lead-text .highlight {
    color: var(--accent-coral);
    font-weight: 500;
}

/* ============================================
   PILLS GRID (Title Options)
   ============================================ */
.pills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.pill {
    padding: 16px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: default;
    transition: var(--transition-bounce);
}

.pill:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-coral);
    transform: scale(1.05);
}

.pill.featured {
    background: var(--accent-gradient-glow);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

/* ============================================
   CARDS ROW (On Air)
   ============================================ */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: #000;
}

.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ============================================
   QUOTE BLOCK (Listener Participation)
   ============================================ */
.quote-block {
    position: relative;
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0;
    color: var(--accent-coral);
    opacity: 0.2;
    position: absolute;
}

.quote-mark:first-of-type {
    top: 40px;
    left: 32px;
}

.quote-mark.end {
    bottom: -20px;
    right: 32px;
}

.quote-block h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
}

.sub-note {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   LIST STACK (Digital)
   ============================================ */
.list-stack {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    transition: var(--transition-smooth);
}

.list-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.list-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.list-icon svg {
    width: 24px;
    height: 24px;
    color: #000;
}

.list-item span {
    font-size: 1.05rem;
    text-align: left;
}

/* ============================================
   FEATURE STACK (Unique Point)
   ============================================ */
.feature-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.highlight-card {
    text-align: center;
}

.feature-main {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-main strong {
    color: var(--accent-coral);
}

.feature-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.core-focus {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.focus-badge {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.focus-badge svg {
    width: 32px;
    height: 32px;
    color: #000;
}

.core-focus h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.focus-main {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.focus-desc {
    color: var(--text-secondary);
}

/* ============================================
   FOCUS GRID (Special Focus)
   ============================================ */
.focus-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.focus-card {
    width: 200px;
    padding: 32px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-bounce);
}

.focus-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-coral);
    transform: scale(1.05);
}

.focus-card svg {
    width: 40px;
    height: 40px;
    color: var(--accent-coral);
    margin-bottom: 16px;
}

.focus-card span {
    font-size: 1rem;
    display: block;
}

.sponsor-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    position: relative;
}

.sponsor-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-primary);
    padding: 4px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.sponsor-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.sponsor-perks {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.sponsor-perks span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sponsor-perks svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
}

/* ============================================
   EVENT CARDS
   ============================================ */
.event-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.event-card {
    width: 280px;
    padding: 40px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.event-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent-coral);
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

/* ============================================
   GUEST ROW
   ============================================ */
.guest-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.guest-card {
    text-align: center;
}

.guest-avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.guest-avatar svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.guest-card:hover .guest-avatar {
    border-color: var(--accent-gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.guest-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

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

/* ============================================
   IMPACT GRID
   ============================================ */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.impact-item {
    padding: 32px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-item:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--accent-gold);
}

.impact-item svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.impact-item span {
    display: block;
    font-size: 1rem;
}

/* ============================================
   CLOSING SLIDE
   ============================================ */
.slide-closing {
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 60%),
        var(--bg-primary);
}

.closing-line {
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto 48px;
    border-radius: 2px;
}

.closing-text {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 48px;
}

.closing-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.closing-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent-coral);
    border-radius: 50%;
    opacity: 0.5;
    animation: dotPulse 2s infinite;
}

.closing-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.closing-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

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

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: #000;
}

/* ============================================
   BRAND SYNERGY SECTION
   ============================================ */
.slide-brand {
    background: radial-gradient(ellipse at 50% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.brand-card {
    text-align: center;
}

.brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.brand-plus {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.brand-message {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-values {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.value-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--accent-gold);
}

.value-chip svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   INDUSTRY FIRST SECTION
   ============================================ */
.slide-first {
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        var(--bg-primary);
}

.first-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.first-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 2px solid var(--accent-coral);
    border-radius: 60px;
    margin-bottom: 32px;
}

.first-badge i {
    width: 28px;
    height: 28px;
    color: var(--accent-coral);
}

.first-badge span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent-coral);
    font-weight: 500;
}

.first-statement {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.first-statement strong {
    color: var(--text-primary);
}

.first-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: 32px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.benefit-card i {
    width: 40px;
    height: 40px;
    color: var(--accent-coral);
    margin-bottom: 16px;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   GK TMT POWER HOUR FEATURE
   ============================================ */
.power-hour-feature {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.05) 100%);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.1);
}

.power-hour-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.5;
}

.power-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.power-badge i {
    width: 20px;
    height: 20px;
    color: #000;
}

.power-badge span {
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.power-hour-feature h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.power-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 90%;
    margin: 0 auto;
}

.power-desc strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Compact cards row */
.cards-row.compact {
    gap: 16px;
}

.cards-row.compact .glass-card {
    padding: 24px 20px;
}

.cards-row.compact .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.cards-row.compact .card-icon svg {
    width: 24px;
    height: 24px;
}

.cards-row.compact h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cards-row.compact p {
    font-size: 0.85rem;
}

/* ============================================
   CITIES GRID (Local Stories)
   ============================================ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.city-card {
    padding: 28px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.city-card:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-coral);
}

.city-card i {
    width: 32px;
    height: 32px;
    color: var(--accent-coral);
    margin-bottom: 12px;
}

.city-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.city-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.local-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 24px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
    text-align: left;
}

.local-note i {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.local-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.local-note strong {
    color: var(--accent-gold);
}

/* Chhattisgarh Feature Section */
.cg-feature {
    max-width: 700px;
    margin: 0 auto 32px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    text-align: center;
}

.cg-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cg-icon svg {
    width: 40px;
    height: 40px;
    color: #000;
}

.cg-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cg-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cg-desc strong {
    color: var(--accent-coral);
}

/* ============================================
   BRAND CLOSER (Closing Slide)
   ============================================ */
.brand-closer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
}

.closer-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.closer-x {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.closer-mirchi {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .slide {
        padding: 80px 24px 32px;
    }

    .hero-branding {
        bottom: 16px;
        right: 24px;
        font-size: 0.8rem;
    }

    .cards-row {
        grid-template-columns: 1fr;
    }

    .event-cards,
    .guest-row {
        flex-direction: column;
        align-items: center;
    }

    .focus-grid {
        flex-direction: column;
        align-items: center;
    }

    .focus-card {
        width: 100%;
        max-width: 280px;
    }

    .sponsor-perks {
        flex-direction: column;
        gap: 12px;
    }

    .quote-block {
        padding: 32px 24px;
    }

    .quote-mark {
        font-size: 5rem;
    }

    /* ========================================
       DISABLE ALL ANIMATIONS ON MOBILE
       Ensures all content is immediately visible
       ======================================== */

    /* Remove scroll-snap on mobile for smoother scrolling */
    .scroll-container {
        scroll-snap-type: none;
    }

    .slide {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    /* Make all slide content immediately visible */
    .slide-content {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Disable all element animations */
    .glass-card,
    .pill,
    .list-item,
    .focus-card,
    .event-card,
    .guest-card,
    .impact-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* Disable hover transforms on mobile (touch devices) */
    .glass-card:hover,
    .pill:hover,
    .list-item:hover,
    .focus-card:hover,
    .event-card:hover,
    .impact-item:hover {
        transform: none !important;
    }

    /* Disable hero glow parallax */
    .hero-glow {
        animation: none;
        opacity: 0.5;
    }

    /* Keep tagline visible without animation delay issues */
    .tagline {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-taglines {
        height: auto;
    }

    .tagline:not(.active) {
        display: none;
    }

    /* Disable closing dots animation */
    .closing-dots span {
        animation: none;
        opacity: 0.7;
    }

    /* Disable badge pulse */
    .badge-dot {
        animation: none;
    }

    /* Disable scroll arrow bounce */
    .scroll-arrow {
        animation: none;
    }

    /* ========================================
       LOCK HORIZONTAL SCROLL/DRAG
       ======================================== */
    html,
    body,
    .scroll-container,
    .slide,
    .slide-content {
        touch-action: pan-y !important;
        -ms-touch-action: pan-y !important;
        -webkit-touch-action: pan-y !important;
        overscroll-behavior-x: none !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* Prevent any element from causing horizontal overflow */
    * {
        max-width: 100vw;
    }

    /* Constrain wide elements */
    .quote-block,
    .glass-card.large,
    .pills-grid,
    .cards-row,
    .list-stack,
    .feature-stack,
    .focus-grid,
    .event-cards,
    .guest-row,
    .impact-grid {
        max-width: calc(100vw - 48px) !important;
        overflow-x: hidden !important;
    }
}

/* --- Shakti Express Interview Format --- */
.interview-format {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.interview-format h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.question-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.q-num {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--dark-bg);
    font-weight: 800;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.question-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.question-item p strong {
    color: var(--accent-light);
    font-weight: 600;
    margin-right: 0.3rem;
}

/* --- Chosen Identity (She For Shakti) --- */
.chosen-identity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
}

.big-title-card {
    position: relative;
    padding: 3rem 5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.big-title-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s infinite alternate;
}

.big-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .big-title {
        font-size: 2.5rem;
    }

    .big-title-card {
        padding: 2rem 1.5rem;
        width: 90%;
    }
}

/* --- Hero Updates for 'She For Shakti' --- */

/* Override/Enhance Hero Title */
.hero-title.big-title {
    font-size: 5.5rem;
    /* Make it HUGE */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title.big-title .gradient-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 40%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.4);
    /* Strong glow */
}

/* Styled Subtitle */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .hero-title.big-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* --- Slide 2: The Essence of Shakti --- */
.slide-shakti-concept {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.shakti-concept-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.shakti-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shakti-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: transform 0.5s ease;
}

.shakti-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
}

.shakti-text-content {
    flex: 1.2;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15);
}

.shakti-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
}

.shakti-text-content h2 .highlight {
    color: #FFD700;
}

.shakti-text-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.shakti-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .shakti-concept-container {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
        /* Ensure space from top for scroll snap */
    }

    .shakti-image {
        max-height: 40vh;
    }

    .shakti-text-content {
        padding: 1.5rem;
        width: 100%;
    }

    .shakti-text-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   AWARDS SLIDE
   ============================================ */
.slide-awards {
    background: radial-gradient(ellipse at 80% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        var(--bg-primary);
}

.nomination-sources {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.source-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.source-pill:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.source-pill i {
    color: #FFD700;
}

/* ============================================
   MOBILE OPTIMIZATIONS (USER REQUEST)
   - No scroll animations
   - Locked Zoom & Horizontal Drag
   ============================================ */
@media (max-width: 768px) {

    /* Disable Slide-In Animations */
    .slide-content {
        animation: none !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    /* Strict Horizontal Lock */
    html,
    body {
        width: 100vw;
        overflow-x: hidden !important;
        touch-action: pan-y;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Ensure content fits */
    .slide,
    .section-title,
    .glass-card {
        max-width: 100vw;
        box-sizing: border-box;
    }
}