/* ============================================
   SUPPORT PAGE - COMPLETE CSS
   Author: Om Pandey
   ============================================ */

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

:root {
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-script: 'Kaushan Script', cursive;
    --font-caveat: 'Caveat', cursive;
    --font-marker: 'Permanent Marker', cursive;
    --font-satisfy: 'Satisfy', cursive;
    
    /* Colors - Light Theme Base */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-code: #1e293b;
    --bg-dark: #0f172a;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    
    /* Accent Colors */
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-light: #a78bfa;
    --accent-lighter: #c4b5fd;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --pink: #ec4899;
    --orange: #f97316;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(99, 102, 241, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

* {
    scrollbar-width: none;
}

/* Selection */
::selection {
    background: var(--accent-primary);
    color: white;
}

/* ============================================
   Typography Utilities
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

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

code {
    font-family: var(--font-mono);
}

mark {
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent-primary);
    font-weight: 600;
}

blockquote {
    font-style: italic;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
}

/* ============================================
   Preloader - Dark Theme
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    scale: 0.75;
    position: relative;
    width: 200px;
    height: 200px;
    translate: 10px -20px;
}

.loader svg {
    position: absolute;
    top: 0;
    left: 0;
}

.loader-text {
    margin-top: 40px;
    font-family: var(--font-caveat);
    font-size: 24px;
    color: var(--accent-lighter);
    letter-spacing: 1px;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.head {
    translate: 27px -30px;
    z-index: 3;
    animation: bob 1s infinite ease-in;
}

.bod {
    translate: 0px 30px;
    z-index: 3;
    animation: bob 1s infinite ease-in-out;
}

.legr {
    translate: 75px 135px;
    z-index: 0;
    animation: rstep 1s infinite ease-in;
    animation-delay: 0.45s;
}

.legl {
    translate: 30px 155px;
    z-index: 3;
    animation: lstep 1s infinite ease-in;
}

@keyframes bob {
    0% { transform: translateY(0) rotate(3deg); }
    5% { transform: translateY(0) rotate(3deg); }
    25% { transform: translateY(5px) rotate(0deg); }
    50% { transform: translateY(0px) rotate(-3deg); }
    70% { transform: translateY(5px) rotate(0deg); }
    100% { transform: translateY(0) rotate(3deg); }
}

@keyframes lstep {
    0% { transform: translateY(0) rotate(-5deg); }
    33% { transform: translateY(-15px) translate(32px) rotate(35deg); }
    66% { transform: translateY(0) translate(25px) rotate(-25deg); }
    100% { transform: translateY(0) rotate(-5deg); }
}

@keyframes rstep {
    0% { transform: translateY(0) translate(0px) rotate(-5deg); }
    33% { transform: translateY(-10px) translate(30px) rotate(35deg); }
    66% { transform: translateY(0) translate(20px) rotate(-25deg); }
    100% { transform: translateY(0) translate(0px) rotate(-5deg); }
}

#gnd {
    translate: -140px 0;
    rotate: 10deg;
    z-index: -1;
    filter: blur(0.5px) drop-shadow(1px 3px 5px rgba(167, 139, 250, 0.5));
    opacity: 0.25;
    animation: scroll 5s infinite linear;
}

@keyframes scroll {
    0% { transform: translateY(25px) translate(50px); opacity: 0; }
    33% { opacity: 0.25; }
    66% { opacity: 0.25; }
    to { transform: translateY(-50px) translate(-100px); opacity: 0; }
}

/* ============================================
   Scroll Progress Bar
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: transparent;
}

.scroll-progress::-webkit-progress-bar {
    background: transparent;
}

.scroll-progress::-webkit-progress-value {
    background: var(--accent-gradient);
}

.scroll-progress::-moz-progress-bar {
    background: var(--accent-gradient);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

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

.nav-brand {
    text-decoration: none;
}

.nav-logo-text {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--accent-primary);
    transition: color var(--transition-base);
}

.nav-brand:hover .nav-logo-text {
    color: var(--accent-secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-link:hover {
    background: var(--bg-secondary);
    color: var(--accent-primary);
}

.nav-github {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    color: white;
    border-radius: var(--radius-md);
    font-size: 20px;
    transition: all var(--transition-base);
}

.nav-github:hover {
    background: var(--accent-primary);
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.support-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 60px 24px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 100% 100%, rgba(236, 72, 153, 0.2), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(139, 92, 246, 0.2), transparent);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255,255,255,0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    bottom: -50px;
    left: -50px;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.support-hero-container {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 10;
}

.coffee-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.support-hero-title {
    margin-bottom: 30px;
}

.title-greeting {
    display: block;
    font-family: var(--font-caveat);
    font-size: clamp(24px, 4vw, 32px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.title-intro {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.title-name {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(56px, 12vw, 100px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.support-hero-tagline {
    margin-bottom: 30px;
}

.tagline-text {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.tagline-highlight {
    display: block;
    font-family: var(--font-caveat);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--accent-lighter);
}

.hero-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-primary);
    padding: 20px 30px;
    margin: 0 auto 30px;
    max-width: 500px;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hero-quote p {
    font-family: var(--font-satisfy);
    font-size: clamp(20px, 3vw, 28px);
    color: white;
}

.hero-invitation {
    margin-bottom: 50px;
}

.hero-invitation span {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.hero-invitation strong {
    font-family: var(--font-caveat);
    font-size: 24px;
    color: var(--accent-lighter);
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
}

.hero-scroll-hint .bounce-arrow {
    width: 28px;
    height: 28px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ============================================
   Scanner Sections (Multiple)
   ============================================ */
.scanner-section {
    padding: 80px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scanner-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scanner Intro */
.scanner-intro {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-primary) 100%);
}

.scanner-intro .scanner-header {
    margin-bottom: 40px;
}

.scanner-emoji {
    font-size: 50px;
    display: block;
    margin-bottom: 16px;
}

.scanner-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    margin-bottom: 10px;
}

.scanner-intro .scanner-title {
    color: white;
}

.scanner-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.scanner-intro .scanner-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.scanner-card {
    display: inline-block;
    background: white;
    border-radius: var(--radius-2xl);
    padding: 30px;
    box-shadow: var(--shadow-2xl);
    position: relative;
    transition: transform var(--transition-base);
}

.scanner-card:hover {
    transform: translateY(-5px);
}

.scanner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-gradient);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.scanner-badge i {
    width: 18px;
    height: 18px;
}

.scanner-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

.scanner-hint {
    font-size: 14px;
    color: var(--text-muted);
}

.scanner-continue {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scanner-continue em {
    font-size: 16px;
    color: var(--text-muted);
}

.scanner-continue i {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    animation: bounce 2s ease-in-out infinite;
}

/* Scanner Mid (In Story) */
.scanner-mid {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 60px 24px;
}

.scanner-mid .scanner-title {
    color: var(--text-primary);
    font-size: clamp(24px, 4vw, 32px);
}

.scanner-card-small {
    padding: 20px;
}

.scanner-card-small .scanner-image {
    width: 160px;
    height: 160px;
}

.scanner-card-small figcaption {
    font-family: var(--font-caveat);
    font-size: 20px;
    color: var(--accent-primary);
    margin-top: 12px;
}

/* Scanner Final */
.scanner-final {
    background: var(--bg-secondary);
    padding: 100px 24px;
}

.scanner-final .scanner-title {
    color: var(--text-primary);
}

.scanner-card-final {
    padding: 40px;
}

.scanner-card-final .scanner-image {
    width: 260px;
    height: 260px;
}

.scanner-final-text {
    font-family: var(--font-caveat);
    font-size: 22px;
    color: var(--accent-primary);
    margin-top: 16px;
}

/* ============================================
   Story Section
   ============================================ */
.story-section {
    padding: 100px 24px;
    background: var(--bg-primary);
    max-width: 900px;
    margin: 0 auto;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.chapter-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-gradient);
    color: white;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.story-main-title {
    font-family: var(--font-marker);
    font-size: clamp(32px, 6vw, 52px);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.story-main-subtitle {
    font-family: var(--font-caveat);
    font-size: clamp(22px, 4vw, 30px);
    color: var(--text-secondary);
}

/* Story Chapter Styles */
.story-chapter {
    position: relative;
    padding: 50px 0;
    padding-left: 100px;
    border-left: 4px solid var(--border-light);
    margin-left: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.story-chapter.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-chapter::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 60px;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.story-year {
    position: absolute;
    left: -85px;
    top: 50px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-primary);
    background: var(--bg-primary);
    padding: 8px 0;
}

.story-year-now {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
}

.chapter-header {
    margin-bottom: 24px;
}

.chapter-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.chapter-title {
    font-family: var(--font-marker);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--accent-primary);
}

.chapter-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.chapter-text.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.chapter-text.big-number strong {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.chapter-code {
    display: block;
    background: var(--bg-code);
    color: var(--accent-lighter);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    margin: 24px 0;
    overflow-x: auto;
}

.chapter-quote {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-left: 4px solid var(--accent-primary);
    padding: 24px 30px;
    margin: 24px 0;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.chapter-quote p {
    font-family: var(--font-satisfy);
    font-size: clamp(20px, 3vw, 26px);
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.chapter-quote.big-quote p {
    font-size: clamp(24px, 4vw, 32px);
}

.chapter-quote cite {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    font-style: normal;
}

.chapter-note {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

.skills-gained {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.skill-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all var(--transition-base);
}

.skill-badge:hover {
    background: var(--accent-primary);
    color: white;
}

.achievement-list {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    margin: 30px 0;
}

.achievement-list li {
    text-align: center;
}

.achievement-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1.2;
}

.achievement-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Present Chapter Special */
.story-chapter-present {
    border-left-color: var(--accent-primary);
}

.story-chapter-present::before {
    width: 28px;
    height: 28px;
    left: -16px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.8);
        transform: scale(1.1);
    }
}

/* ============================================
   Ask Section
   ============================================ */
.ask-section {
    padding: 100px 24px;
    background: var(--bg-secondary);
    text-align: center;
}

.ask-header {
    margin-bottom: 50px;
}

.ask-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.ask-title {
    font-family: var(--font-marker);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--text-primary);
}

.ask-content {
    max-width: 700px;
    margin: 0 auto 50px;
}

.ask-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
}

.ask-text .emphasized {
    font-family: var(--font-caveat);
    font-size: 1.5em;
    color: var(--text-primary);
}

.ask-text .coffee-text {
    font-family: var(--font-satisfy);
    font-size: 1.3em;
    color: var(--orange);
}

.cost-list {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 30px 40px;
    text-align: left;
    box-shadow: var(--shadow-lg);
}

.cost-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border-light);
}

.cost-list li:last-child {
    border-bottom: none;
}

.cost-item {
    font-size: 16px;
    color: var(--text-secondary);
}

.cost-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent-primary);
    font-weight: 600;
}

.cost-value.emphasize {
    font-family: var(--font-caveat);
    font-size: 18px;
    color: var(--pink);
}

.ask-highlight {
    max-width: 700px;
    margin: 0 auto 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 2px dashed var(--accent-primary);
    border-radius: var(--radius-2xl);
}

.ask-highlight p {
    font-family: var(--font-satisfy);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--accent-primary);
    line-height: 1.5;
}

.ask-cta {
    font-family: var(--font-caveat);
    font-size: 32px;
    color: var(--text-primary);
}

/* ============================================
   Main Support Section
   ============================================ */
.support-section {
    padding: 100px 24px;
    background: var(--bg-primary);
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-emoji {
    font-size: 50px;
    display: block;
    margin-bottom: 16px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.support-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.support-subtitle {
    font-family: var(--font-caveat);
    font-size: 24px;
    color: var(--text-secondary);
}

/* Main Scanner */
.main-scanner {
    text-align: center;
    margin-bottom: 80px;
}

.main-scanner-card {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-secondary), white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.main-scanner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-primary), transparent 30%);
    animation: rotateGlow 6s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.main-scanner-card:hover::before {
    opacity: 0.1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-scanner-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-strong);
}

.scanner-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--accent-gradient);
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 30px;
}

.scanner-label i {
    width: 20px;
    height: 20px;
}

.main-scanner-image {
    position: relative;
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.scanner-works-with {
    position: relative;
    font-size: 14px;
    color: var(--text-muted);
}

/* Support Tiers */
.support-tiers {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.tiers-header {
    text-align: center;
    margin-bottom: 40px;
}

.tiers-header h3 {
    font-family: var(--font-marker);
    font-size: clamp(24px, 4vw, 32px);
    color: var(--text-primary);
}

.tier-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tier-item {
    position: relative;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.tier-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.tier-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tier-badge-hero {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--accent-gradient);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tier-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 16px;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tier-amount {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.tier-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.tier-perks {
    text-align: left;
}

.tier-perks li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
    color: var(--text-secondary);
}

.tier-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Tier Hover Colors */
.tier-coffee:hover {
    border-color: #8b4513;
}

.tier-meal:hover {
    border-color: var(--orange);
}

.tier-sponsor {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(236, 72, 153, 0.03));
}

.tier-sponsor:hover {
    border-color: var(--pink);
}

/* Support Impact */
.support-impact {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-code);
    border-radius: var(--radius-2xl);
}

.impact-title {
    font-family: var(--font-marker);
    font-size: clamp(24px, 4vw, 32px);
    color: white;
    margin-bottom: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
}

.impact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.impact-item i {
    width: 36px;
    height: 36px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-sizing: content-box;
    color: var(--accent-lighter);
    transition: all var(--transition-base);
}

.impact-item:hover i {
    background: var(--accent-gradient);
    color: white;
    transform: translateY(-5px);
}

.impact-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Thank You Section
   ============================================ */
.thankyou-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.thankyou-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.thankyou-title {
    font-family: var(--font-satisfy);
    font-size: clamp(48px, 10vw, 80px);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.thankyou-text {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.thankyou-quote {
    margin: 30px 0 40px;
}

.thankyou-quote p {
    font-family: var(--font-caveat);
    font-size: 28px;
    color: var(--accent-primary);
}

.thankyou-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.back-btn,
.github-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.back-btn {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.back-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.github-btn {
    background: var(--bg-dark);
    color: white;
}

.github-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.back-btn i,
.github-btn i {
    width: 20px;
    height: 20px;
}

.thankyou-socials {
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.social-label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 22px;
    transition: all var(--transition-base);
}

.social-links li a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
}

/* ============================================
   Footer
   ============================================ */
.support-footer {
    padding: 30px 24px;
    background: var(--bg-dark);
    text-align: center;
}

.footer-brand a {
    font-family: var(--font-script);
    font-size: 20px;
    color: var(--accent-lighter);
    transition: color var(--transition-base);
}

.footer-brand a:hover {
    color: white;
}

.footer-year {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .tier-list {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .story-chapter {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
    
    .story-chapter::before {
        display: none;
    }
    
    .story-year {
        position: relative;
        left: 0;
        top: 0;
        display: inline-block;
        padding: 8px 20px;
        background: var(--accent-gradient);
        color: white;
        border-radius: var(--radius-full);
        margin-bottom: 20px;
    }
    
    .story-year-now {
        background: var(--accent-gradient);
        -webkit-text-fill-color: white;
    }
    
    .achievement-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cost-list {
        padding: 24px;
    }
    
    .cost-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .main-scanner-image {
        width: 220px;
        height: 220px;
    }
    
    .thankyou-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .back-btn,
    .github-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .support-hero {
        padding: 40px 16px;
    }
    
    .coffee-icon {
        font-size: 60px;
    }
    
    .hero-quote {
        padding: 16px 20px;
    }
    
    .scanner-section {
        padding: 60px 16px;
    }
    
    .scanner-image {
        width: 180px;
        height: 180px;
    }
    
    .scanner-card-final .scanner-image {
        width: 220px;
        height: 220px;
    }
    
    .story-section {
        padding: 60px 16px;
    }
    
    .story-header {
        margin-bottom: 50px;
    }
    
    .story-chapter {
        padding: 30px 0;
    }
    
    .chapter-emoji {
        font-size: 40px;
    }
    
    .chapter-quote {
        padding: 20px;
    }
    
    .skills-gained {
        justify-content: center;
    }
    
    .ask-section {
        padding: 60px 16px;
    }
    
    .ask-highlight {
        padding: 24px;
    }
    
    .support-section {
        padding: 60px 16px;
    }
    
    .main-scanner-card {
        padding: 24px;
    }
    
    .main-scanner-image {
        width: 180px;
        height: 180px;
    }
    
    .tier-item {
        padding: 24px;
    }
    
    .support-impact {
        padding: 40px 24px;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .impact-item i {
        width: 28px;
        height: 28px;
        padding: 12px;
    }
    
    .thankyou-section {
        padding: 60px 16px;
    }
    
    .social-links li a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* Very Small Screens */
@media (max-width: 360px) {
    .nav-logo-text {
        font-size: 18px;
    }
    
    .title-name {
        font-size: 48px;
    }
    
    .scanner-image {
        width: 160px;
        height: 160px;
    }
    
    .main-scanner-image {
        width: 160px;
        height: 160px;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .nav,
    #preloader,
    .scroll-progress,
    .hero-scroll-hint,
    .scanner-continue,
    .thankyou-cta,
    .thankyou-socials {
        display: none !important;
    }
    
    .support-hero {
        min-height: auto;
        padding: 40px;
        background: white !important;
        color: black !important;
    }
    
    .title-name,
    .thankyou-title {
        -webkit-text-fill-color: var(--accent-primary) !important;
    }
}