/* CSS Variables for Theme */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --accent-gold: #FFD700;
    --accent-warm: #FFF8DC;
    --accent-red: #DC143C;
    --accent-green: #228B22;
    --border-color: #2a2a3e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --glow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Stars */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 80px 10px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, white, transparent);
    background-size: 200px 200px;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.3;
    z-index: -1;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-family: 'Fredoka', cursive;
    color: var(--accent-gold);
}

.magic-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 3rem 20px;
    text-align: center;
    position: relative;
}

.lights-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent-red) 0px,
        var(--accent-red) 20px,
        var(--accent-green) 20px,
        var(--accent-green) 40px,
        var(--accent-gold) 40px,
        var(--accent-gold) 60px,
        var(--accent-warm) 60px,
        var(--accent-warm) 80px
    );
    animation: slide 2s linear infinite;
}

@keyframes slide {
    0% { background-position: 0 0; }
    100% { background-position: 80px 0; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-image-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.twinkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 35%, rgba(255, 215, 0, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 75% 44%, rgba(255, 255, 255, 0.3) 0%, transparent 25%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.hero-title {
    color: var(--accent-gold);
    text-shadow: var(--glow);
    margin-bottom: 1rem;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Cards */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    min-width: 150px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Fredoka', cursive;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-warm);
    border-color: var(--accent-warm);
}

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

.btn-donate {
    background: linear-gradient(135deg, var(--accent-red), #FF69B4);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Info Section */
.quick-info {
    padding: 4rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.quick-info h2 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-secondary);
}

/* Footer */
.main-footer {
    background: var(--bg-primary);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--border-color);
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-warm);
}

.footer-tax {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        padding: 2rem;
        transition: 0.3s;
        border-top: 2px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ========================================
   Page Header Styles
   ======================================== */
.page-header {
    margin-top: 80px;
    padding: 4rem 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.page-header h1 {
    color: var(--accent-gold);
    text-shadow: var(--glow);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Content Section Styles
   ======================================== */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ========================================
   Story Block Styles (About Page)
   ======================================== */
.story-block {
    max-width: 800px;
    margin: 0 auto;
}

.story-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.story-block h2 {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

.story-block p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.quote-block {
    background: var(--bg-card);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
}

.quote-block p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.quote-block cite {
    color: var(--text-secondary);
    font-style: normal;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-gold);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline-content h3 {
    color: var(--accent-warm);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.impact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.impact-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.impact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Fredoka', cursive;
}

.impact-label {
    display: block;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Mission List */
.mission-list {
    list-style: none;
    margin: 2rem 0;
}

.mission-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.cta-block {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ========================================
   Gallery Styles
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-caption {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-gold);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   Sponsor Page Styles
   ======================================== */
.sponsor-grid {
    display: grid;
    gap: 2rem;
}

.sponsor-grid.presenting {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.sponsor-grid.community {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sponsor-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.sponsor-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.sponsor-card.placeholder {
    border-style: dashed;
    opacity: 0.8;
}

.sponsor-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sponsor-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.logo-placeholder {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
    color: var(--accent-gold);
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    text-align: center;
}

.logo-placeholder.large {
    font-size: 2rem;
    padding: 3rem;
}

.logo-placeholder.empty {
    background: transparent;
    border: 2px dashed var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
}

.sponsor-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.sponsor-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Sponsorship Benefits */
.sponsorship-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
}

/* Sponsorship Tiers */
.sponsorship-tiers {
    margin: 3rem 0;
}

.sponsorship-tiers h3 {
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tier-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.tier-card:hover {
    border-color: var(--accent-gold);
}

.tier-card h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.tier-price {
    color: var(--accent-warm);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
}

.tier-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.tier-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
}

/* Contact CTA */
.contact-cta {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
}

.contact-cta h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: var(--accent-warm);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ========================================
   Benefactors Page Styles
   ======================================== */
.benefactor-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.benefactor-logo {
    margin-bottom: 1.5rem;
}

.benefactor-logo img {
    max-width: 300px;
    height: auto;
}

.benefactor-tagline {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.benefactor-overview {
    max-width: 800px;
    margin: 0 auto;
}

.benefactor-overview > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefactor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Fredoka', cursive;
}

.stat-item .stat-label {
    display: block;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.service-card.highlight {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
}

.highlight-tag {
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

/* Program Details */
.program-details {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.program-details h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Weekly Needs */
.weekly-needs {
    margin: 2rem 0;
}

.weekly-needs h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.needs-highlight {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Donation Options */
.donation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.donation-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.donation-card:hover {
    border-color: var(--accent-gold);
}

.donation-card.primary {
    border-color: var(--accent-red);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(220, 20, 60, 0.1) 100%);
}

.donation-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.donation-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-donate.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.visit-coldwater {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.visit-coldwater h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.visit-coldwater p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ========================================
   Help Page Styles
   ======================================== */

/* Countdown Section */
.countdown-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.countdown-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.countdown-box h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Fredoka', cursive;
}

.countdown-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.countdown-message {
    margin-top: 1.5rem;
    color: var(--accent-warm);
    font-size: 1.1rem;
}

/* Help Block */
.help-block {
    max-width: 900px;
    margin: 0 auto;
}

.help-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.help-block h2 {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 1rem;
}

.help-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Priority Item */
.priority-item {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-gold);
    margin-bottom: 2rem;
    position: relative;
}

.priority-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.priority-item h3 {
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.priority-item p {
    color: var(--text-secondary);
}

/* Other Items */
.other-items {
    margin: 2rem 0;
}

.other-items h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    list-style: none;
}

.items-grid li {
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.items-grid li::before {
    content: '•';
    position: absolute;
    left: 0.75rem;
    color: var(--accent-green);
}

/* Visit Info */
.visit-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.visit-info h3 {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-address h4,
.location-times h4 {
    color: var(--accent-warm);
    margin-bottom: 0.5rem;
}

.location-address p,
.location-times p {
    color: var(--text-secondary);
}

.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
}

/* Financial Benefits */
.financial-benefits {
    margin: 2rem 0;
}

.financial-benefits .benefit {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.financial-benefits .benefit strong {
    color: var(--accent-warm);
}

.donation-cta {
    text-align: center;
    margin-top: 2rem;
}

.donation-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Social CTA */
.social-cta {
    text-align: center;
    margin: 2rem 0;
}

.hashtag-display {
    margin-bottom: 1rem;
}

.hashtag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
}

.social-cta p {
    color: var(--text-secondary);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.twitter {
    background: #000;
    color: white;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Follow Us */
.follow-us {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.follow-us h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.follow-us p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Selfie Tips */
.selfie-tips {
    margin: 2rem 0;
}

.selfie-tips h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.selfie-tips ul {
    list-style: none;
}

.selfie-tips li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.selfie-tips li:last-child {
    border-bottom: none;
}

.selfie-tips li::before {
    content: '📸';
    position: absolute;
    left: 0;
}

/* Volunteer Opportunities */
.volunteer-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.volunteer-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.volunteer-card h3 {
    color: var(--accent-warm);
    margin-bottom: 1.5rem;
}

.volunteer-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.volunteer-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.volunteer-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Sponsor Benefits Summary */
.sponsor-benefits-summary {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.sponsor-benefits-summary ul {
    list-style: none;
}

.sponsor-benefits-summary li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.sponsor-benefits-summary li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.sponsor-cta {
    text-align: center;
}

.sponsor-cta .contact-info {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.sponsor-cta .contact-info a {
    color: var(--accent-warm);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.action-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.action-text {
    color: var(--accent-warm);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   Responsive Adjustments for New Pages
   ======================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .story-icon,
    .help-icon {
        font-size: 3rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 40px;
    }

    .timeline-marker {
        left: 2px;
        width: 16px;
        height: 16px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 1.8rem;
    }

    .hashtag {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .share-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .sponsor-grid.presenting {
        grid-template-columns: 1fr;
    }

    .impact-number,
    .stat-value {
        font-size: 2rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .main-nav,
    .lights-border,
    .countdown-section,
    .lightbox {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .btn {
        border: 1px solid black;
    }
}
