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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: #8b5cf6;
    background-color: #000000;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #000000;
    font-weight: 400;
    font-size: 2rem;
    text-shadow: none;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-logo h2:hover {
    color: #8b5cf6;
    text-shadow: none;
    transform: scale(1.05);
}

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    letter-spacing: 0.5px;
    display: inline-block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.nav-link:hover {
    color: #8b5cf6;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: width 0.3s ease;
    z-index: 1;
}

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

.nav-donate-btn::after {
    display: none !important;
}

/* Donate Button Styling */
.nav-donate {
    margin-left: 1rem;
}

.nav-donate-btn {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #7c3aed, #6d28d9);
    background-size: 300% 300%;
    color: #ffffff !important;
    padding: 0.75rem 2rem !important;
    border-radius: 50px;
    border: 2px solid rgba(236, 72, 153, 0.8);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 
        0 4px 25px rgba(236, 72, 153, 0.6),
        0 0 40px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    animation: 
        gradientShift 3s ease infinite,
        pulseGlow 2.5s ease-in-out infinite;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


@keyframes heartbeat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    10%, 30% {
        transform: translateY(-50%) scale(1.15);
    }
    20%, 40% {
        transform: translateY(-50%) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 4px 25px rgba(236, 72, 153, 0.6),
            0 0 40px rgba(139, 92, 246, 0.5),
            0 0 60px rgba(236, 72, 153, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 4px 35px rgba(236, 72, 153, 0.9),
            0 0 60px rgba(139, 92, 246, 0.7),
            0 0 90px rgba(236, 72, 153, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}


@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-donate-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    border-radius: 50px;
}

.nav-donate-btn:hover::after {
    left: 100%;
}

.nav-donate-btn:hover {
    background: linear-gradient(135deg, #f472b6, #ec4899, #8b5cf6, #7c3aed) !important;
    background-size: 300% 300% !important;
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 
        0 10px 40px rgba(236, 72, 153, 0.9),
        0 0 60px rgba(139, 92, 246, 0.7),
        0 0 100px rgba(236, 72, 153, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    border-color: #f472b6 !important;
    color: #ffffff !important;
    letter-spacing: 1.4px;
    animation: 
        gradientShift 2s ease infinite,
        pulseGlowHover 1.5s ease-in-out infinite !important;
}

@keyframes pulseGlowHover {
    0%, 100% {
        box-shadow: 
            0 10px 40px rgba(236, 72, 153, 0.9),
            0 0 60px rgba(139, 92, 246, 0.7),
            0 0 100px rgba(236, 72, 153, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 
            0 10px 50px rgba(236, 72, 153, 1),
            0 0 80px rgba(139, 92, 246, 0.9),
            0 0 120px rgba(236, 72, 153, 0.7),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}



.nav-donate-btn:active {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 6px 25px rgba(236, 72, 153, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6),
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Unified Layout */
.hero {
    background: #000000;
    min-height: auto;
    display: block;
    color: #8b5cf6;
    padding-top: 70px;
    padding-bottom: 0;
    margin: 0;
    position: relative;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000;
}

.hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.hero-background img.active {
    opacity: 0.75;
}

.hero-overlay {
    display: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    margin: 0;
    padding: 0.5rem 0 1rem;
}

.hero-main-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.content-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3);
    border: 3px solid rgba(139, 92, 246, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(20, 10, 40, 0.8));
    backface-visibility: hidden;
    transform: translateZ(0);
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.7);
}

.content-image:hover .image-wrapper img {
    transform: translateZ(0) scale(1);
}

.content-image-wide {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.content-image-square {
    width: 100%;
    aspect-ratio: 1;
}

.content-images-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 17px;
    text-indent: -9999px;
    font-size: 0;
    line-height: 0;
    /* Prevent layout shift during image loading */
    min-height: 200px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.05), rgba(20, 10, 40, 0.1));
    /* Optimize for AWS hosting */
    contain: layout style paint;
    /* Show content immediately while image loads */
    will-change: contents;
}

.content-text-block {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

.content-text-block:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.text-block-1 {
    margin-top: 0;
}

.text-block-2 {
    margin-top: 0;
}

.text-block-3 {
    margin-top: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1.5rem 0 0.5rem;
}

/* Action Boxes */
.action-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin: 2.5rem 0 0;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.action-box {
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.6), rgba(35, 20, 55, 0.4));
    border: 3px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.2) inset,
        0 0 60px rgba(139, 92, 246, 0.1);
}

.action-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.action-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.action-box:hover::before {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

.action-box:hover::after {
    opacity: 1;
}

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

.action-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.9);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(139, 92, 246, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
}

.action-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 2;
}

.action-box-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.action-box:hover .action-box-icon {
    transform: scale(1.15) rotate(5deg);
    color: #a78bfa;
    filter: drop-shadow(0 6px 20px rgba(139, 92, 246, 0.7));
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
}

.action-box-donate .action-box-icon {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.05);
    }
    20%, 40% {
        transform: scale(1);
    }
}

.action-box-sponsor .action-box-icon {
    animation: handshake 3s ease-in-out infinite;
}

@keyframes handshake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.action-box h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.action-box:hover h3 {
    color: #c4b5fd;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
}

.action-box p {
    font-size: 0.95rem;
    color: #d1d5db;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-box:hover p {
    color: #e5e7eb;
}

.action-box-donate {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.25) 0%, 
        rgba(139, 92, 246, 0.3) 50%, 
        rgba(59, 130, 246, 0.25) 100%);
    border-color: rgba(236, 72, 153, 0.6);
}

.action-box-donate:hover {
    border-color: rgba(236, 72, 153, 0.9);
    box-shadow: 
        0 20px 60px rgba(236, 72, 153, 0.4),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(236, 72, 153, 0.2);
}

.action-box-donate .action-box-icon {
    color: #ec4899;
    text-shadow: 0 0 25px rgba(236, 72, 153, 0.7);
}

.action-box-donate:hover .action-box-icon {
    color: #f472b6;
}

.action-box-sponsor {
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.25) 0%, 
        rgba(139, 92, 246, 0.3) 50%, 
        rgba(34, 197, 94, 0.25) 100%);
    border-color: rgba(251, 191, 36, 0.6);
}

.action-box-sponsor:hover {
    border-color: rgba(251, 191, 36, 0.9);
    box-shadow: 
        0 20px 60px rgba(251, 191, 36, 0.4),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(251, 191, 36, 0.2);
}

.action-box-sponsor .action-box-icon {
    color: #fbbf24;
    text-shadow: 0 0 25px rgba(251, 191, 36, 0.7);
}

.action-box-sponsor:hover .action-box-icon {
    color: #fcd34d;
}

.action-box-shop {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.25) 0%, 
        rgba(99, 102, 241, 0.3) 50%, 
        rgba(59, 130, 246, 0.25) 100%);
    border-color: rgba(139, 92, 246, 0.6);
}

.action-box-shop:hover {
    border-color: rgba(139, 92, 246, 0.9);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(99, 102, 241, 0.3),
        inset 0 0 40px rgba(139, 92, 246, 0.2);
}

.action-box-shop .action-box-icon {
    color: #8b5cf6;
    text-shadow: 0 0 25px rgba(139, 92, 246, 0.7);
    animation: tshirtFloat 3s ease-in-out infinite;
}

@keyframes tshirtFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.action-box-shop:hover .action-box-icon {
    color: #a78bfa;
    animation: tshirtFloat 1.5s ease-in-out infinite;
}

/* Sponsors Section */
.sponsors-section {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
}

.sponsors-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0 0 2rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.sponsors-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.sponsors-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.sponsors-label {
    font-size: 0.9rem;
    color: #a1a1aa;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.sponsor-name-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
}

.sponsor-name-societas {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
}

.sponsor-name-tech {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0000;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.sponsor-name-link:hover .sponsor-name-societas {
    color: #a78bfa;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.sponsor-name-link:hover .sponsor-name-tech {
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.btn-donate {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff !important;
    padding: 1rem 3rem !important;
    border-radius: 50px;
    border: 3px solid #8b5cf6;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-donate:hover::before {
    left: 100%;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #a78bfa;
    color: #ffffff !important;
}

.hero-image-gallery {
    display: none;
}

/* Image styling for new layout */
.content-image .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(20, 10, 40, 0.3));
    overflow: hidden;
}

.content-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    image-rendering: auto;
    text-indent: -9999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    will-change: opacity;
    /* Optimize for AWS hosting - prevent layout shifts */
    min-width: 100%;
    min-height: 100%;
    /* Ensure proper rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Faster image rendering */
    image-rendering: -webkit-optimize-contrast;
    -webkit-image-rendering: optimize-contrast;
}

/* Fix for bottom image to show heads - adjust object position to top */
#galleryBox6 .image-wrapper img {
    object-position: top center;
}

.content-image .image-wrapper img.active {
    opacity: 1;
    position: absolute;
    z-index: 2;
}

.content-image .image-wrapper img.fade-out {
    opacity: 0;
    z-index: 1;
}

/* Loading state */
.content-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top-color: #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.content-image .image-wrapper.loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive styles for new layout */
@media (max-width: 992px) {
    .content-images-pair {
        gap: 1rem;
    }
    
    .content-text-block {
        padding: 2rem;
    }
    
    .content-layout {
        gap: 2rem;
    }
    
    .content-image {
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .content-images-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-text-block {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .content-layout {
        gap: 1.5rem;
    }
    
    .content-image {
        border-radius: 15px;
        border-width: 2px;
    }
    
    .intro-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-main-content {
        padding: 0 15px;
        gap: 1.5rem;
    }
    
    .content-image-wide {
        aspect-ratio: 16 / 10;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .home-header-wrapper {
        flex-direction: row !important;
        gap: 1.5rem;
        padding: 0.75rem 0;
        margin-bottom: 1.5rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .foundation-logo {
        padding: 0.4rem;
        max-width: 120px;
        width: auto;
        flex-shrink: 0;
    }
    
    .foundation-logo .logo-image {
        max-width: 100px;
        width: auto;
    }
    
    .home-page .section-header {
        text-align: left;
        flex: 1;
    margin-bottom: 0;
    }
    
    .home-page .section-header .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 0.25rem;
    }
    
    .home-page .section-header .hero-subtitle {
        font-size: 1rem;
        margin-top: 0;
    }
    
    .hero-main-content {
        padding: 0 20px;
        gap: 1.5rem;
    }
    
    .content-layout {
        gap: 1.25rem;
    }
    
    .content-text-block {
        padding: 1.25rem 1.5rem;
    }
    
    .intro-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .content-image-wide {
        aspect-ratio: 16 / 7;
        max-height: 40vh;
    }
    
    .content-image {
        border-radius: 12px;
    }
    
    .intro-lead {
        font-size: 1.1rem;
        padding: 1rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .intro-highlight {
        padding: 1rem 1.5rem;
        margin: 1rem 0;
    }
    
    .intro-callout {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .hero-buttons {
        padding: 1rem 0;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-donate-button {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-donate {
        padding: 0.875rem 2.5rem !important;
        font-size: 1.1rem !important;
    }
    
    /* Optimize images for landscape */
    .content-image .image-wrapper img {
        object-fit: cover;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .content-image-wide {
        aspect-ratio: 16 / 9;
    }
    
    .content-text-block {
        padding: 1.25rem;
    }
    
    .intro-title {
        font-size: 1.3rem;
    }
    
    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-main-content {
        padding: 0 10px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .content-image,
    .content-text-block {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Reduce animations on mobile for better performance */
    .content-image:hover {
        transform: translateY(-3px);
    }
    
    /* Optimize image rendering */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 100%;
    align-items: start;
    grid-auto-rows: min-content;
    margin-top: 0;
    padding-top: 0;
}

.gallery-container-row-2 {
    margin-top: 1.5rem;
}

.gallery-box {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(139, 92, 246, 0.2) inset,
        0 0 40px rgba(139, 92, 246, 0.1);
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    animation: boxGlow 3s ease-in-out infinite alternate;
}

.gallery-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(124, 58, 237, 0.4), rgba(139, 92, 246, 0.6));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
}

.gallery-box:hover::before {
    opacity: 1;
}

.gallery-box:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3) inset,
        0 0 60px rgba(139, 92, 246, 0.2);
}

@keyframes boxGlow {
    0% {
        box-shadow: 
            0 8px 25px rgba(139, 92, 246, 0.3),
            0 0 20px rgba(139, 92, 246, 0.2) inset,
            0 0 40px rgba(139, 92, 246, 0.1);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(139, 92, 246, 0.4),
            0 0 25px rgba(139, 92, 246, 0.3) inset,
            0 0 50px rgba(139, 92, 246, 0.15);
    }
}

.gallery-box-1 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    animation-delay: 0s;
    margin-bottom: 0;
}

.gallery-box-2 {
    aspect-ratio: 1;
    animation-delay: 0.5s;
    align-self: start;
}

.gallery-box-5 {
    aspect-ratio: 1;
    animation-delay: 2s;
    align-self: start;
}

.gallery-box-6 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
    animation-delay: 2.5s;
    margin-top: 0.75rem;
}

.gallery-box > div {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(139, 92, 246, 0.15));
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-box > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 70%,
        rgba(139, 92, 246, 0.15) 100%
    );
    pointer-events: none;
    border-radius: 15px;
    z-index: 3;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.9) contrast(1.1) saturate(0.95);
    border-radius: 15px;
    z-index: 1;
    will-change: opacity;
    text-indent: -9999px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.gallery-image.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) contrast(1.1) saturate(1.1);
    z-index: 2;
}

.gallery-image.fade-out {
    opacity: 0;
    transform: scale(1.02);
    filter: brightness(0.85) contrast(1) saturate(0.85);
    z-index: 1;
}

.gallery-box:hover .gallery-image.active {
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    transform: translateZ(0) scale(1);
}

.hero-title {
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 0.9;
    text-shadow: none;
    letter-spacing: clamp(0.25px, 0.1vw, 1px);
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', sans-serif;
    color: #8b5cf6;
    text-transform: uppercase;
    font-style: normal;
    white-space: nowrap;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    margin: 1rem auto 0.5rem;
    overflow: visible;
    position: relative;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    }
    100% {
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.hero-description {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intro-header {
    margin: 1rem 0;
    text-align: center;
    padding: 0;
    width: 100%;
}

.hero-main-content .intro-header {
    margin: 1rem 0;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

.intro-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: contentGlow 6s ease-in-out infinite;
    pointer-events: none;
}

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

.intro-content:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #f3f4f6;
    margin: 0 0 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.intro-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), rgba(139, 92, 246, 0.2));
    border-radius: 2px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.intro-paragraph:hover::before {
    opacity: 1;
    width: 5px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.8), rgba(139, 92, 246, 0.4));
}

.intro-paragraph:hover {
    color: #ffffff;
    padding-left: 2rem;
    transform: translateX(3px);
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

.intro-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border-left: 5px solid #8b5cf6;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.intro-lead:hover::before {
    left: 100%;
}

.intro-paragraph strong {
    color: #8b5cf6;
    font-weight: 700;
    text-shadow: 
        0 0 15px rgba(139, 92, 246, 0.6),
        0 0 30px rgba(139, 92, 246, 0.3);
    position: relative;
    padding: 0 2px;
    transition: all 0.3s ease;
}

.intro-paragraph strong:hover {
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
    display: inline-block;
}

.story-section-2 .intro-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-left: 4px solid #8b5cf6;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 1.25rem;
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.25),
        inset 0 0 15px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.intro-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.15));
    border-left: 5px solid #8b5cf6;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 0 0 1rem;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.story-section-2 .intro-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f3f4f6;
    margin: 0;
}

.intro-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    animation: highlightShine 3s ease-in-out infinite;
}

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

.intro-highlight:hover {
    transform: translateX(5px);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.15);
    border-left-width: 6px;
}

.highlight-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

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

.intro-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.8;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(139, 92, 246, 0.3);
    flex: 1;
}

.story-section-3 .intro-callout {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.25rem 0 0;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.story-section-3 .intro-callout p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f3f4f6;
    margin: 0;
}

.intro-callout {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 3px solid rgba(139, 92, 246, 0.5);
    border-radius: 20px;
    padding: 2rem;
    margin: 1rem 0 0;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.intro-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: calloutPulse 4s ease-in-out infinite;
}

@keyframes calloutPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.intro-callout:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.5),
        inset 0 0 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.7);
}

.callout-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.intro-callout p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(139, 92, 246, 0.4);
}

.intro-callout p:last-child {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #e5e7eb;
}

.intro-callout strong {
    color: #8b5cf6;
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: all 0.3s ease;
}

.intro-callout strong:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

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

.btn-primary {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

.btn-primary:hover {
    background: transparent;
    color: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.btn-secondary:hover {
    background: #8b5cf6;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-placeholder i {
    font-size: 4rem;
    color: white;
}

.tshirt-promo {
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tshirt-promo:hover {
    transform: scale(1.05);
}

.tshirt-box {
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ff6b6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    animation: tshirtPop 3s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.tshirt-box:hover {
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.8), 0 0 0 2px rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #ff8e53, #ff6b6b, #ff4757);
    color: #1a1a1a;
    text-shadow: 0 3px 6px rgba(255, 255, 255, 0.9);
}

.tshirt-message {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b5cf6;
    margin: 0;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    animation: messageGlow 2.5s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes tshirtPop {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
}

@keyframes messageGlow {
    0%, 100% {
        color: #8b5cf6;
        text-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
        transform: scale(1);
    }
    50% {
        color: #ffffff;
        text-shadow: 0 0 25px rgba(139, 92, 246, 1);
        transform: scale(1.05);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-header h1,
.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 4s ease-in-out infinite;
    position: relative;
}

@keyframes textShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

.section-header h1::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.section-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* About Section */
.about {
    padding: 3rem 0;
    margin-top: 0;
    background: #000000;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

/* When about section is the first element (standalone about page) */
main > .about:first-child {
    padding-top: calc(70px + 4rem);
}

/* Home page using about page structure */
.home-page {
    padding-top: calc(70px + 2rem);
    padding-bottom: 0;
    margin: 0;
    position: relative;
}

.home-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000;
}

.home-page .hero-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.home-page .hero-background img.active {
    opacity: 0.75;
}

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

.home-header-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 2rem 0;
    overflow: visible;
}

.foundation-logo {
    flex-shrink: 0;
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
}

.foundation-logo:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.5),
        inset 0 0 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
}

.foundation-logo .logo-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
    border-radius: 10px;
}

.foundation-logo:hover .logo-image {
    filter: drop-shadow(0 6px 20px rgba(139, 92, 246, 0.7));
    transform: scale(1.02);
}

.home-page .section-header {
    text-align: center;
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
    overflow: visible;
}

.home-page .section-header .hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
    text-shadow: none;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', 'Arial Black', 'Arial Bold', sans-serif;
    color: #8b5cf6;
    text-transform: uppercase;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
}

.home-page .section-header .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    color: #f3f4f6;
}

/* Home page story-photo-section for images */
.home-page .story-photo-section {
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
}

.home-page .story-photo-section::before,
.home-page .story-photo-section::after {
    display: none;
}

.home-page .story-photo-section .content-image {
    width: 100%;
    margin: 0;
}

/* Home page spacing adjustments */
.home-page .about-story-layout {
    margin-bottom: 2rem;
}

.home-page .story-content-wrapper {
    gap: 2rem;
}

.home-page .story-title-container {
    margin-bottom: 2rem;
}

.home-page .story-title-container .story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.home-page .action-boxes {
    margin-top: 2rem;
    margin-bottom: 0;
}

.home-page .sponsors-section {
    margin-top: 2rem;
}

.home-page .home-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.home-page .home-section:first-of-type {
    margin-top: 3rem;
    padding-top: 3rem;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Page - New Clean Design */
.about-content-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Introduction Section */
.about-intro-section {
    margin-bottom: 4rem;
}

.about-intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.about-intro-text-block {
    display: flex;
    align-items: center;
}

.about-intro-text {
    font-size: 1.3rem;
    line-height: 2;
    color: #f3f4f6;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.about-intro-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Two Image Comparison Layout */
.about-images-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 900px;
    position: relative;
    padding: 2rem 0;
}

/* Divider between images */
.about-images-comparison::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.3) 20%, 
        rgba(139, 92, 246, 0.5) 50%, 
        rgba(139, 92, 246, 0.3) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.about-image-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.9) 0%, 
        rgba(124, 58, 237, 0.8) 50%,
        rgba(139, 92, 246, 0.9) 100%);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: fit-content;
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-image-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.about-image-item:hover .about-image-label::before {
    left: 100%;
}

.about-image-item:hover .about-image-label {
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-intro-image-block .about-image-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    border: 4px solid rgba(139, 92, 246, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(20, 10, 40, 0.3));
}

.about-intro-image-block .about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.about-intro-image-block .about-image-wrapper:hover::before {
    opacity: 1;
}

.about-intro-image-block .about-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 70px rgba(139, 92, 246, 0.6),
        inset 0 0 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.8);
}

.about-intro-image-block .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.about-intro-image-block .about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive for two images */
@media (max-width: 768px) {
    .about-images-comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem 0;
    }
    
    .about-images-comparison::before {
        display: none; /* Hide divider on mobile */
    }
    
    .about-image-item {
        gap: 1rem;
    }
    
    .about-image-label {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 2px;
    }
    
    .about-intro-image-block .about-image-wrapper {
        max-width: 100%;
        border-width: 3px;
    }
}

.about-intro-callout {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.about-intro-callout p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #ffffff;
    margin: 0;
    text-align: center;
    letter-spacing: 0.2px;
}

/* My Story Section */
.about-story-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
}

.about-story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.about-story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    border-radius: 2px;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.story-block {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 10, 40, 0.5));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.story-block:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.story-block-left {
    margin-right: 10%;
}

.story-block-right {
    margin-left: 10%;
}

.story-text-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.about-image-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(139, 92, 246, 0.3);
    border: 3px solid rgba(139, 92, 246, 0.4);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

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

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text-paragraph {
    font-size: 1.2rem;
    line-height: 2;
    color: #f3f4f6;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-text-paragraph strong {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Timeline */
.about-timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    flex-wrap: wrap;
}

.timeline-item {
    text-align: center;
    flex: 0 1 auto;
    min-width: 100px;
}

.timeline-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.timeline-label {
    font-size: 0.85rem;
    color: #a1a1aa;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Critical Section */
.about-critical-section {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.critical-text-wrapper {
    margin-top: 1.5rem;
}

.critical-alert {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-left: 4px solid #8b5cf6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.critical-alert p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.2px;
}

/* About Page Story Layout - Redesigned */
.about-story-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

.story-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.story-section {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.story-section-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-top: 0;
}

.story-section-3 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    margin-top: 0;
}

.story-section-2 .intro-paragraph,
.story-section-3 .intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 1.25rem;
    text-align: left;
    padding-left: 0;
}

.story-section-2 .intro-paragraph:last-child,
.story-section-3 .intro-paragraph:last-child {
    margin-bottom: 0;
}

/* New layout: Image on left, text on right at top */
.story-top-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 0;
}

.story-photo-left {
    position: relative;
    width: 100%;
}

.story-photo-left .photo-frame {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.story-photo-left .photo-frame {
    aspect-ratio: 1;
}

.story-photo-left .photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
    position: relative;
    z-index: 2;
}

.story-text-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-text-right .story-text-block {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
}

.story-text-right .intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e5e7eb;
    text-align: left;
    font-weight: 400;
}

.story-text-right .intro-paragraph:last-child {
    margin-bottom: 0;
}

.story-text-right .intro-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    line-height: 1.7;
}

.story-stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    justify-content: center;
}

.story-photo-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    margin: 2rem 0;
    position: relative;
}

.story-photo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    right: -5%;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(20, 10, 40, 0.15));
    border-radius: 30px;
    z-index: -1;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.05);
}

.story-photo-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: sectionGlow 4s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.photo-side-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.story-stat {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 100px;
    flex: 0 1 auto;
}

.story-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.story-stat:hover::before {
    left: 100%;
}

.story-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: #a1a1aa;
    text-transform: none;
    letter-spacing: 0.3px;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.story-quote {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border-left: 4px solid #8b5cf6;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    margin-top: 1rem;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.3);
    line-height: 1;
    font-family: 'Georgia', serif;
    position: absolute;
    top: -10px;
    left: 15px;
}

.story-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #f3f4f6;
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.story-text-block {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
    position: relative;
    overflow: hidden;
}

.story-text-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: contentGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.story-section-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 10, 40, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.story-section-3 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 10, 40, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.about-photos {
    position: sticky;
    top: 90px;
}

.story-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-photo-box {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(20, 10, 40, 0.9));
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(139, 92, 246, 0.3);
    animation: storyBoxPulse 4s ease-in-out infinite;
}

@keyframes storyBoxPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(139, 92, 246, 0.15),
            inset 0 1px 0 rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(139, 92, 246, 0.25),
            inset 0 1px 0 rgba(139, 92, 246, 0.4);
    }
}

.story-photo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 340deg,
        rgba(139, 92, 246, 0.3) 340deg 360deg
    );
    animation: rotateBorder 8s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.story-photo-box:hover::before {
    opacity: 1;
}

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

.story-photo-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(20, 10, 40, 0.95));
    border-radius: 18px;
    z-index: 1;
}

.story-photo-box img {
    z-index: 2;
}

.story-photo-large {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
    animation-delay: 0s;
}

.story-photo-wide {
    grid-column: 1 / -1;
    aspect-ratio: 2.5 / 1;
}

/* Stagger the pulse animation for each box */
.story-photo-box:nth-child(1) { animation-delay: 0s; }
.story-photo-box:nth-child(2) { animation-delay: 0.5s; }
.story-photo-box:nth-child(3) { animation-delay: 1s; }
.story-photo-box:nth-child(4) { animation-delay: 1.5s; }
.story-photo-box:nth-child(5) { animation-delay: 2s; }

.story-photo-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.35),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(139, 92, 246, 0.5);
    animation: none;
}

.photo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: relative;
}

.photo-inner i {
    font-size: 2.5rem;
    color: rgba(139, 92, 246, 0.4);
    transition: all 0.4s ease;
}

.story-photo-box:hover .photo-inner i {
    color: rgba(139, 92, 246, 0.7);
    transform: scale(1.1);
}

.story-photo-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(0.9);
    transition: opacity 2.5s ease-in-out, transform 2s ease, filter 1s ease;
    opacity: 0;
    transform: scale(1.05);
    z-index: 2;
    border-radius: 18px;
}

.story-photo-box img.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(0.95) contrast(1.1) saturate(1);
}

.story-photo-box:hover img.active {
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
    transform: scale(1.03);
}

/* Overlay gradient on images */
.story-photo-box .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(139, 92, 246, 0.1) 100%
    );
    z-index: 3;
    pointer-events: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-photo-box:hover .photo-overlay {
    opacity: 1;
}

/* Single photo display - Circular Design */
.story-photo-single {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.story-photo-single:hover {
    transform: translateY(-10px);
}

.photo-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px rgba(139, 92, 246, 0.3),
        0 0 0 8px rgba(139, 92, 246, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(139, 92, 246, 0.4);
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(20, 10, 40, 0.8));
    transition: all 0.5s ease;
    z-index: 2;
}

.story-photo-single:hover .photo-frame {
    box-shadow: 
        0 0 0 5px rgba(139, 92, 246, 0.5),
        0 0 0 12px rgba(139, 92, 246, 0.25),
        0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(139, 92, 246, 0.6);
    transform: scale(1.05);
    border-radius: 30px;
}

/* Animated square corner accents */
.photo-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 3px solid rgba(139, 92, 246, 0.6);
    border-left: 3px solid rgba(139, 92, 246, 0.6);
    border-radius: 5px 0 0 0;
    animation: cornerGlow1 3s ease-in-out infinite;
    z-index: -1;
}

.photo-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid rgba(139, 92, 246, 0.5);
    border-right: 3px solid rgba(139, 92, 246, 0.5);
    border-radius: 0 0 5px 0;
    animation: cornerGlow2 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes cornerGlow1 {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes cornerGlow2 {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }
}

.photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 25px;
    background: radial-gradient(
        ellipse at center,
        rgba(139, 92, 246, 0.3) 0%,
        rgba(139, 92, 246, 0.15) 40%,
        transparent 70%
    );
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.story-photo-single:hover .photo-glow {
    opacity: 1;
    animation-duration: 1.5s;
    width: 140%;
    height: 140%;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.story-photo-single img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    filter: brightness(0.95) contrast(1.1) saturate(1.1);
    transition: all 0.5s ease;
}

.story-photo-single:hover img {
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
    transform: scale(1.02);
}

/* Additional outer glow effect */
.story-photo-single::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    border-radius: 30px;
    background: radial-gradient(
        ellipse at center,
        transparent 60%,
        rgba(139, 92, 246, 0.1) 80%,
        transparent 100%
    );
    animation: outerGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes outerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* About page specific adjustments */
.about-page .about-text {
    max-width: 100%;
}

.about-page .section-header {
    margin-bottom: 3rem;
}

/* About Page Logo */
.about-header-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 2rem 0;
    position: relative;
}

.about-page-header {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-header-title-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.about-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    position: relative;
}

@keyframes titleShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

.about-title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    border-radius: 2px;
    margin-top: 1rem;
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.about-title-underline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2px;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.2);
    }
}

.about-header-subtitle-wrapper {
    margin-top: 1rem;
    position: relative;
}

.about-header-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.about-header-subtitle-accent {
    font-size: 1.3rem;
    color: #a78bfa;
    margin: 0.5rem 0 0 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-style: italic;
    line-height: 1.4;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-left: 1.5rem;
}

.about-header-subtitle-accent::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(139, 92, 246, 0.6);
    font-style: normal;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) translateX(5px);
    }
}

/* Award Badge Styling - Redesigned */
.about-award-badge {
    margin-top: 2.5rem;
    position: relative;
    max-width: 600px;
}

.award-badge-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.12) 0%, 
        rgba(139, 92, 246, 0.15) 50%,
        rgba(255, 215, 0, 0.12) 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.6), 
        rgba(139, 92, 246, 0.6),
        rgba(255, 215, 0, 0.6)) 1;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.25),
        0 0 60px rgba(139, 92, 246, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.08);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-award-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.4), 
        rgba(139, 92, 246, 0.4),
        rgba(255, 215, 0, 0.4));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease-in-out infinite;
}

.about-award-badge:hover::before {
    opacity: 1;
}

.about-award-badge:hover .award-badge-inner {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(255, 215, 0, 0.35),
        0 0 80px rgba(139, 92, 246, 0.3),
        inset 0 0 40px rgba(255, 215, 0, 0.12);
}

.award-icon-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 70px;
    height: 70px;
}

.award-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.4), 
        rgba(255, 193, 7, 0.4));
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.7);
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: trophyFloat 3s ease-in-out infinite;
}

.award-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: iconGlow 2s ease-in-out infinite;
}

.award-icon i {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 1),
        0 0 40px rgba(255, 215, 0, 0.6);
    position: relative;
    z-index: 3;
    animation: trophyShine 2.5s ease-in-out infinite;
}

.award-content {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.award-badge-top {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    line-height: 1.2;
}

.award-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.award-divider {
    font-size: 1.4rem;
    color: rgba(255, 215, 0, 0.6);
    font-weight: 400;
    line-height: 1;
    opacity: 0.7;
}

.award-status {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.award-label {
    font-size: 1.15rem;
    font-weight: 500;
    color: #d1d5db;
    font-family: 'Poppins', sans-serif;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-top: 0.25rem;
    opacity: 0.95;
}

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

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

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes trophyShine {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
    50% {
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 215, 0, 1.2));
    }
}


.about-header-image {
    flex-shrink: 0;
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
}

.about-header-image:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.5),
        inset 0 0 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
}

.about-header-image .about-image-wrapper {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.about-header-image:hover .about-image-wrapper {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.7);
    transform: scale(1.02);
}

.about-header-image .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
}

.about-header-image:hover .about-image-wrapper img {
    filter: drop-shadow(0 6px 20px rgba(139, 92, 246, 0.7));
}

.about-logo {
    flex-shrink: 0;
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.3),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
}

.about-logo:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 35px rgba(139, 92, 246, 0.5),
        inset 0 0 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
}

.about-logo .logo-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.4));
    transition: all 0.3s ease;
    border-radius: 10px;
}

.about-logo:hover .logo-image {
    filter: drop-shadow(0 6px 20px rgba(139, 92, 246, 0.7));
    transform: scale(1.02);
}

/* Team Members Section */
.team-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
}

.team-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.team-level {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.team-level-1 {
    margin-bottom: 1rem;
}

.team-level-1::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), transparent);
}

.team-level-2 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.team-level-2::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.6));
}

.team-level-2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.6), transparent);
}

.team-level-2 .team-member::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0.75rem;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-2 .team-member:first-child::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    width: calc(50% + 0.75rem);
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-2 .team-member:last-child::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    right: 50%;
    width: calc(50% + 0.75rem);
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-3 {
    margin-top: 0.5rem;
    position: relative;
}

.team-level-3::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.6));
}

.team-level-3 .team-member::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0.75rem;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-3 .team-member:first-child::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    width: calc(33.33% + 0.5rem);
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-3 .team-member:nth-child(2)::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(33.33% + 0.5rem);
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
}

.team-level-3 .team-member:last-child::after {
    content: '';
    position: absolute;
    top: -0.75rem;
    right: 50%;
    width: calc(33.33% + 0.5rem);
    height: 2px;
    background: rgba(139, 92, 246, 0.6);
}

.team-member-ceo {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    transform: scale(1.02);
}

.team-member-ceo .team-member-name {
    font-size: 1.35rem;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
}

.team-member-ceo .team-member-role {
    font-size: 1rem;
    color: #a78bfa;
}

.team-member {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(20, 10, 40, 0.6));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
    max-width: 280px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 12px 30px rgba(139, 92, 246, 0.4),
        0 0 25px rgba(139, 92, 246, 0.2),
        inset 0 0 25px rgba(139, 92, 246, 0.1);
}

.team-member:hover .team-member-role {
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.5);
}

.team-member:hover::before {
    opacity: 1;
}

.team-member-image {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.team-image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    border: 3px solid rgba(139, 92, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: teamGlow 3s ease-in-out infinite;
}

@keyframes teamGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.team-image-placeholder i {
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.6);
    z-index: 1;
    position: relative;
}

.team-member:hover .team-image-placeholder {
    transform: scale(1.1);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.team-member:hover .team-image-placeholder i {
    color: rgba(139, 92, 246, 0.9);
}

.team-member-info {
    position: relative;
    z-index: 1;
    width: 100%;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: 0.2px;
}

.team-member-role {
    font-size: 0.9rem;
    color: #8b5cf6;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 0.5rem;
    display: inline-block;
    width: 100%;
}

/* My Story Title Styling */
.story-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem 0;
    position: relative;
}

.story-title-container::before,
.story-title-container::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.story-title-container::before {
    top: 0;
}

.story-title-container::after {
    bottom: 0;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    position: relative;
    text-shadow: 
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: storyTitleShine 4s ease-in-out infinite;
}

@keyframes storyTitleShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

.story-title-accent {
    flex: 1;
    max-width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8), transparent);
    border-radius: 2px;
    position: relative;
}

.story-title-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #8b5cf6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

.story-title-accent:first-child::before {
    right: 0;
}

.story-title-accent:last-child::before {
    left: 0;
}

@media (max-width: 768px) {
    .story-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .home-page .story-title-container .story-title {
        white-space: normal;
        font-size: clamp(1.3rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    .story-title-container {
        gap: 1rem;
    }
    
    .story-title-accent {
        max-width: 60px;
    }
}

@media (max-width: 992px) {
    .about-header-wrapper {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .about-page-header {
        width: 100%;
        text-align: center;
    }
    
    .about-main-title {
        font-size: 3rem;
    }
    
    .about-header-subtitle {
        font-size: 1.3rem;
    }
    
    .about-header-subtitle-accent {
        font-size: 1.15rem;
        padding-left: 1.25rem;
    }
    
    .about-header-subtitle-accent::before {
        font-size: 1.3rem;
    }
    
    .about-title-underline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-award-badge {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .award-badge-inner {
        padding: 1.5rem 2rem;
        gap: 1.25rem;
    }
    
    .award-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
    }
    
    .award-icon-glow {
        width: 75px;
        height: 75px;
    }
    
    .award-icon i {
        font-size: 2rem;
    }
    
    .award-year {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    
    .award-divider {
        font-size: 1.2rem;
    }
    
    .award-status {
        font-size: 1.15rem;
        letter-spacing: 0.8px;
    }
    
    .award-label {
        font-size: 1.05rem;
        letter-spacing: 0.4px;
    }
    
    .about-logo {
        padding: 0.75rem;
        width: 100%;
        max-width: 250px;
        display: flex;
        justify-content: center;
    }
    
    .about-logo .logo-image {
        max-width: 180px;
        width: 100%;
    }
    
    .about-header-image {
        width: 100%;
        max-width: 250px;
        display: flex;
        justify-content: center;
    }
    
    .about-header-image .about-image-wrapper {
        width: 100%;
        max-width: 250px;
    }
    
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-container {
        display: flex;
        justify-content: center;
    }
    
    .about-timeline {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .team-tree {
        gap: 2rem;
    }
    
    .team-level {
        gap: 1rem;
    }
    
    .team-level-1::after,
    .team-level-2::before,
    .team-level-2::after,
    .team-level-3::before,
    .team-level-2 .team-member::before,
    .team-level-3 .team-member::before,
    .team-level-2 .team-member::after,
    .team-level-3 .team-member::after {
        display: none;
    }
    
    .team-member {
        padding: 1.25rem 1rem;
        min-height: 120px;
        max-width: 240px;
    }
    
    .team-member-ceo {
        transform: scale(1);
    }
    
    .story-top-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .story-photo-left {
        order: 1;
    }
    
    .story-text-right {
        order: 2;
    }
    
    .story-stats-section {
        gap: 0.875rem;
        padding: 0.875rem;
    }
    
    .story-stat {
        padding: 0.625rem 0.875rem;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.35rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .story-photo-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .photo-side-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .story-quote {
        grid-column: 1 / -1;
    }
    
    .story-photo-single {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .story-section-2,
    .story-section-3 {
        padding: 2rem;
    }
    
    .story-text-block {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .about-header-wrapper {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-header-subtitle {
        font-size: 1.2rem;
    }
    
    .about-header-subtitle-accent {
        font-size: 1.05rem;
        padding-left: 1rem;
    }
    
    .about-header-subtitle-accent::before {
        font-size: 1.2rem;
    }
    
    .about-title-underline {
        width: 100px;
        height: 3px;
    }
    
    .about-award-badge {
        margin-top: 1.5rem;
    }
    
    .award-badge-inner {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .award-icon-wrapper {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    
    .award-icon {
        width: 55px;
        height: 55px;
    }
    
    .award-icon-glow {
        width: 70px;
        height: 70px;
    }
    
    .award-icon i {
        font-size: 1.75rem;
    }
    
    .award-badge-top {
        justify-content: center;
    }
    
    .award-year {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .award-divider {
        font-size: 1.1rem;
    }
    
    .award-status {
        font-size: 1rem;
        letter-spacing: 0.6px;
    }
    
    .award-label {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    
    .about-logo {
        padding: 0.6rem;
        max-width: 200px;
    }
    
    .about-logo .logo-image {
        max-width: 150px;
    }
    
    .about-header-image {
        max-width: 200px;
    }
    
    .about-header-image .about-image-wrapper {
        max-width: 200px;
    }
    
    .about-intro-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.1rem;
    }
    
    .about-intro-image-block .about-image-wrapper {
        max-width: 100%;
    }
    
    .about-intro-callout {
        padding: 1.5rem;
    }
    
    .about-intro-callout p {
        font-size: 1.05rem;
    }
    
    .about-story-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .story-block {
        padding: 1.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .about-text-paragraph {
        font-size: 1.05rem;
    }
    
    .about-timeline {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .timeline-label {
        font-size: 0.75rem;
    }
    
    .about-critical-section {
        padding: 1.5rem;
    }
    
    .critical-alert {
        padding: 1.25rem;
    }
    
    .team-tree {
        gap: 1.5rem;
    }
    
    .team-level {
        gap: 1rem;
        flex-direction: column;
    }
    
    .team-level-1::after,
    .team-level-2::before,
    .team-level-2::after,
    .team-level-3::before,
    .team-level-2 .team-member::before,
    .team-level-3 .team-member::before,
    .team-level-2 .team-member::after,
    .team-level-3 .team-member::after {
        display: none;
    }
    
    .team-member {
        min-height: 120px;
        padding: 1.25rem 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .team-member-ceo {
        transform: scale(1);
    }
    
    .team-member-name {
        font-size: 1.1rem;
    }
    
    .team-member-role {
        font-size: 0.85rem;
    }
    
    .story-top-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .story-stats-section {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .story-photo-section {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .photo-side-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-stat {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .story-quote {
        padding: 1.5rem;
    }
    
    .story-quote p {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .quote-icon {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
    
    .story-section-2,
    .story-section-3,
    .story-text-block {
        padding: 1.5rem;
    }
    
    .story-content-wrapper {
        gap: 2rem;
    }
    
    .story-photo-grid {
        gap: 0.75rem;
    }
    
    .story-photo-box {
        border-radius: 15px;
    }
    
    .photo-inner i {
        font-size: 2rem;
    }
}

.about-text h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.stat h3 {
    font-size: 2.5rem;
    color: #8b5cf6;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #d1d5db;
    font-weight: 500;
}

/* Mission Section */
/* Home page sections within unified container */
.home-section {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    width: 100%;
}

.home-section:first-of-type {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.home-section .section-header {
    margin: 0 0 1.5rem;
}

.mission-section .mission-grid {
    margin-top: 0;
}

.impact-section .impact-content {
    margin-top: 0;
}

.contact-section .contact-content {
    margin-top: 0;
}

/* Footer section within home page */
.footer-section-home {
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-section-home .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-section-home .footer-bottom {
    max-width: 1200px;
    margin: 0 auto 0;
    padding: 1.5rem 0 0;
    text-align: center;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-section-home .footer-bottom p {
    margin: 0;
    padding: 0;
}

.mission {
    padding: 2rem 0 3rem;
    background: #000000;
    border-top: none;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 0;
}

/* Responsive styles for action boxes and sponsors */
@media (max-width: 1024px) {
    .action-boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .action-boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .action-box {
        padding: 2.5rem 2rem;
    }
    
    .action-box-icon {
        font-size: 3.5rem;
    }
    
    .action-box h3 {
        font-size: 1.9rem;
    }
    
    .action-box p {
        font-size: 1rem;
    }
    
    .sponsors-simple {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sponsors-label {
        font-size: 0.9rem;
    }
    
    .sponsor-name-societas,
    .sponsor-name-tech {
        font-size: 1.3rem;
    }
}

.mission .section-header h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.mission .section-header p {
    color: #a1a1aa !important;
}

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

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    padding: 3rem 0;
    background: #000000;
    color: white;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-stories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-icon {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.story cite {
    font-style: normal;
    font-weight: 500;
    opacity: 0.8;
}

.impact-numbers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    opacity: 0.8;
    font-weight: 500;
}

/* Events, Shop, and Gallery Pages */
.events-page, .shop-page, .gallery-page {
    padding: calc(70px + 4rem) 0 4rem;
    background: #000000;
    min-height: 100vh;
    position: relative;
}

.events-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: #000000;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.gallery-placeholder {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
    text-align: center;
    padding: 2rem;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.gallery-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Gallery Page Specific Styles */
.gallery-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-page .gallery-item {
    position: relative;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
}

.gallery-page .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    border-color: rgba(139, 92, 246, 0.6);
}

.gallery-page .gallery-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    color: #8b5cf6;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-page .gallery-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.gallery-page .gallery-item:hover .gallery-placeholder i {
    transform: scale(1.1);
    color: #ffffff;
}

.gallery-page .gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.gallery-page .gallery-item:hover .gallery-placeholder p {
    color: #8b5cf6;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #8b5cf6;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #000000;
    position: relative;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #d1d5db;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.action-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 45px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

.action-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 2rem 0 3rem;
    background: #000000;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    justify-items: center;
}

.event-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 5;
    position: relative;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    cursor: pointer;
    width: 100%;
    max-width: 320px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.event-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 100%;
}

.event-card-link:hover {
    text-decoration: none;
    z-index: 10;
}

.event-card-link:hover .event-card {
    z-index: 10;
}

.event-image {
    position: relative;
    height: 45%;
    min-height: 140px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.event-placeholder {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.event-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.event-badge i {
    font-size: 0.7rem;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-content h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.event-info {
    margin-bottom: 0.75rem;
}

.event-date, .event-venue, .event-location {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-date i, .event-venue i, .event-location i {
    color: #8b5cf6;
    font-size: 0.9rem;
}

.event-description {
    color: #d1d5db;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.85rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-price {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.event-price .price {
    color: #8b5cf6;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Past Events Styling */
.past-events-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
}

.past-events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.past-event-card {
    position: relative;
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
    opacity: 0.95;
}

.past-event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 20px;
    opacity: 0.5;
}

.past-event-card:hover {
    opacity: 1;
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
}

.past-event-card:hover::after {
    opacity: 0.3;
}

.past-event-card .event-image {
    position: relative;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.past-event-card:hover .event-image {
    filter: grayscale(0%) brightness(1);
}

.past-event-card .event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.past-event-badge {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.9), rgba(75, 85, 99, 0.9)) !important;
    border-color: rgba(107, 114, 128, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.past-event-card:hover .past-event-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(124, 58, 237, 0.9)) !important;
    border-color: rgba(139, 92, 246, 0.7) !important;
    transform: scale(1.05);
}

.past-event-card .event-content h3 {
    color: #d1d5db;
    position: relative;
}

.past-event-card:hover .event-content h3 {
    color: #ffffff;
}

.past-event-card .event-date,
.past-event-card .event-location {
    color: #9ca3af;
}

.past-event-card:hover .event-date,
.past-event-card:hover .event-location {
    color: #d1d5db;
}

.past-event-card .event-price .price {
    color: #6b7280;
    opacity: 0.8;
}

.past-event-card:hover .event-price .price {
    color: #8b5cf6;
    opacity: 1;
}

/* Empty State */
.empty-events-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin: 2rem 0;
}

.empty-events-icon {
    font-size: 4rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
}

.empty-events-state h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.empty-events-state p {
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Featured Event */
.featured-event {
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3) !important;
}

.featured-event:hover {
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4) !important;
}

/* Shop Section */
.shop {
    padding: 3rem 0;
    background: #000000;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

.shop-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-grid-side-by-side {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.shop-grid-single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.shop-section {
    margin-bottom: 4rem;
}

.shop-section:last-child {
    margin-bottom: 0;
}

.shop-section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
}

.shop-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.shop-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    border-radius: 2px;
}

.shop-section-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin: 0.75rem 0 0;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.6;
}

.product-card {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.98), rgba(25, 15, 40, 0.98));
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(139, 92, 246, 0.15) inset,
                0 0 60px rgba(139, 92, 246, 0.1);
    animation: cardFloat 6s ease-in-out infinite;
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.8), 
        rgba(167, 139, 250, 0.8),
        rgba(139, 92, 246, 0.8),
        transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

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

.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card-new {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(139, 92, 246, 0.3) inset,
                0 6px 30px rgba(139, 92, 246, 0.3),
                0 0 80px rgba(139, 92, 246, 0.15);
    background: linear-gradient(135deg, 
        rgba(20, 10, 35, 0.98), 
        rgba(35, 20, 55, 0.98),
        rgba(25, 15, 45, 0.98));
}

.product-card-new:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(139, 92, 246, 1);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5),
                0 0 0 2px rgba(139, 92, 246, 0.4) inset,
                0 12px 40px rgba(139, 92, 246, 0.4),
                0 0 100px rgba(139, 92, 246, 0.25);
    animation: none;
}

.product-card-previous {
    border-color: rgba(139, 92, 246, 0.35);
    opacity: 0.96;
    background: linear-gradient(135deg, 
        rgba(15, 10, 25, 0.95), 
        rgba(30, 20, 40, 0.95));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(139, 92, 246, 0.15) inset,
                0 0 50px rgba(139, 92, 246, 0.08);
}

.product-card-previous:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.35),
                0 0 0 2px rgba(139, 92, 246, 0.25) inset,
                0 12px 40px rgba(139, 92, 246, 0.3),
                0 0 90px rgba(139, 92, 246, 0.2);
    opacity: 1;
    animation: none;
}

.product-card-women {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(236, 72, 153, 0.3) inset,
                0 6px 30px rgba(236, 72, 153, 0.3),
                0 0 80px rgba(236, 72, 153, 0.15);
    background: linear-gradient(135deg, 
        rgba(30, 10, 35, 0.98), 
        rgba(45, 15, 50, 0.98),
        rgba(35, 12, 42, 0.98));
}

.product-card-women:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(236, 72, 153, 0.9);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.5),
                0 0 0 2px rgba(236, 72, 153, 0.4) inset,
                0 12px 40px rgba(236, 72, 153, 0.4),
                0 0 100px rgba(236, 72, 153, 0.25);
    animation: none;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9, #7c3aed);
    background-size: 200% 200%;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5),
                0 0 20px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5),
                    0 0 20px rgba(139, 92, 246, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.7),
                    0 0 30px rgba(139, 92, 246, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.product-badge-limited {
    background: linear-gradient(135deg, #f59e0b, #d97706, #fbbf24);
    background-size: 200% 200%;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5),
                0 0 20px rgba(245, 158, 11, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgePulseGold 2s ease-in-out infinite;
}

@keyframes badgePulseGold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5),
                    0 0 20px rgba(245, 158, 11, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.7),
                    0 0 30px rgba(245, 158, 11, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.btn-compact {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 12px;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, #9d6af7, #7c3aed);
}

.btn-compact:active {
    transform: translateY(0);
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.quantity-btn {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quantity-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 80px;
    height: 42px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

/* Size Dropdown */
.size-dropdown {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b5cf6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.size-dropdown:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background-color: rgba(0, 0, 0, 0.7);
}

.size-dropdown:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
}

.size-dropdown option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 0.5rem;
}

/* Delivery Method Radio Buttons */
.delivery-method-selector label {
    flex: 1;
    padding: 0.875rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.delivery-method-selector input[type="radio"] {
    margin: 0;
    cursor: pointer;
    accent-color: #8b5cf6;
}

.delivery-method-selector input[type="radio"]:checked + label,
.delivery-method-selector label:has(input[type="radio"]:checked) {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.3);
}

.delivery-method-selector label:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-1px);
}

.delivery-info {
    margin-top: 0.75rem;
    padding: 0.875rem;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    color: #a78bfa;
    font-size: 0.85rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.delivery-info input[type="text"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.delivery-info input[type="text"]:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

.delivery-info input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.product-image {
    height: 240px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.product-placeholder {
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.6);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover .product-placeholder {
    color: rgba(139, 92, 246, 0.9);
    transform: scale(1.1);
}

.product-content {
    padding: 2.5rem;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.05) 50%,
        rgba(139, 92, 246, 0.08) 100%);
    position: relative;
}

.product-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.4), 
        transparent);
}

.product-content h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

.product-description {
    color: #a1a1aa;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.product-price {
    color: #8b5cf6;
    font-size: 1.8rem;
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa, #8b5cf6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceShine 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

@keyframes priceShine {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.product-sizes {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.size-label {
    color: #ffffff;
    font-weight: 500;
    margin-right: 0.5rem;
}

.size {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 32px;
    text-align: center;
}

.size:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: #c4b5fd;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

/* Hide footer on home page since it's integrated */
.footer-hidden {
    display: none !important;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #8b5cf6;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #6d28d9);
    border-radius: 2px;
}

.footer-section h4 {
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-auth {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    position: relative;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.2px;
    position: relative;
}

.footer-section ul li a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    border-color: rgba(139, 92, 246, 0.8);
}

.social-links a:hover::before {
    opacity: 1;
}

.footer-contact-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: #8b5cf6;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer-contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contact-item a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.footer-contact-item span {
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: #d1d5db;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.organization-name {
    color: #8b5cf6;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.4);
}

.powered-by {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    cursor: default;
}

.powered-by:focus,
.powered-by:focus-visible {
    outline: none !important;
    border: none;
    box-shadow: none;
}

.powered-by:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

.powered-by .societas {
    color: #ffffff;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.powered-by .tech {
    color: #ff0000;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.powered-by:hover .societas {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.powered-by:hover .tech {
    color: #ff0000;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    transform: scale(1.05);
}



/* Responsive Design */
@media (max-width: 768px) {
    .home-header-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        padding: 1.5rem 0;
    }
    
    .foundation-logo {
        padding: 0.75rem;
        width: 100%;
        max-width: 250px;
        display: flex;
        justify-content: center;
    }
    
    .foundation-logo .logo-image {
        max-width: 180px;
        width: 100%;
    }
    
    /* Portrait mobile - keep column layout */
    @media (orientation: portrait) {
        .home-header-wrapper {
            gap: 1.5rem;
            padding: 1rem 0;
        }
        
        .foundation-logo {
            padding: 0.6rem;
            max-width: 200px;
        }
        
        .foundation-logo .logo-image {
            max-width: 160px;
        }
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-donate {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .nav-donate-btn {
        display: inline-block;
        width: auto;
        padding: 0.75rem 2rem !important;
    }
    
    /* Landscape mobile nav */
    @media (orientation: landscape) {
        .nav-menu {
            padding: 1.5rem 0;
        }
        
        .nav-menu li {
            margin: 0.75rem 0;
        }
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 3rem 20px 1rem;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
        align-items: stretch;
    }
    
    .hero-image-gallery {
        position: relative;
        top: 0;
        order: -1;
        align-self: stretch;
    }
    
    .hero-bio-section {
        order: 2;
    }
    
    .gallery-container {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .gallery-box-1 {
        grid-column: 1 / -1;
    }
    
    .gallery-box {
        border-radius: 12px;
    }

    .hero-title {
        font-size: 5rem;
        white-space: normal;
        letter-spacing: 0.5px;
        line-height: 1;
        overflow: visible;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Enhanced Mobile Styles */
    .hero {
        padding: 80px 0 60px;
        min-height: 100vh;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 4.5rem;
        line-height: 1;
        margin-bottom: 1rem;
        white-space: normal;
        letter-spacing: 0.5px;
        overflow: visible;
    }

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

    .hero-description {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .intro-title {
        font-size: 1.5rem;
    }
    
    .intro-content {
        padding: 1.5rem;
    }
    
    .intro-paragraph {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .intro-lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .intro-highlight {
        padding: 1.25rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .intro-highlight p {
        font-size: 1.05rem;
    }
    
    .intro-callout {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .intro-callout p {
        font-size: 1.05rem;
    }
    
    .intro-callout strong {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 200px;
        padding: 12px 30px;
    }
    
    .hero-donate-button {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .btn-donate {
        width: 220px;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
    }

    /* T-shirt Box Mobile */
    .tshirt-box {
        width: 180px;
        height: 70px;
        font-size: 1rem;
    }

    /* Sections Mobile */
    .about, .mission, .events, .shop, .impact, .contact {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .past-events-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .empty-events-state {
        padding: 3rem 1.5rem;
    }
    
    .empty-events-icon {
        font-size: 3rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .events-grid, .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card, .product-card {
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .contact-item {
        padding: 1.5rem;
        text-align: center;
    }

    .action-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 150px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .home-header-wrapper {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .foundation-logo {
        padding: 0.5rem;
    }
    
    .foundation-logo .logo-image {
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 4rem;
        white-space: normal;
        letter-spacing: 0.5px;
        line-height: 1;
        overflow: visible;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

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

    /* Enhanced Small Mobile Styles */
    .hero-title {
        font-size: 3.5rem;
        line-height: 1;
        white-space: normal;
        letter-spacing: 0.25px;
        overflow: visible;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .mission-card {
        padding: 1.5rem 1rem;
    }

    .mission-icon {
        width: 50px;
        height: 50px;
    }

    .btn {
        width: 180px;
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .tshirt-box {
        width: 160px;
        height: 60px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 120px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-box-6 {
        grid-column: 1;
    }

    .contact-item {
        padding: 1rem;
    }

    .action-card {
        padding: 1.5rem 1rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-contact-info {
        margin-top: 1.25rem;
        gap: 0.875rem;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
        gap: 0.625rem;
    }
    
    .footer-contact-item i {
        font-size: 0.9rem;
        width: 16px;
    }
    
    .shop-section {
        margin-bottom: 3rem;
    }
    
    .section-header h1,
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .shop-section-title {
        font-size: 2rem;
    }
    
    .shop-section-subtitle {
        font-size: 1.05rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .shop-grid-side-by-side {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .home-page {
        padding-top: calc(70px + 1rem);
    }
    
    .home-header-wrapper {
        flex-direction: row !important;
        gap: 1.5rem;
        padding: 0.75rem 0;
        margin-bottom: 1.5rem;
        align-items: center;
        justify-content: flex-start;
    }
    
    .foundation-logo {
        padding: 0.4rem;
        max-width: 120px;
        width: auto;
        flex-shrink: 0;
    }
    
    .foundation-logo .logo-image {
        max-width: 100px;
        width: auto;
    }
    
    .home-page .section-header {
        text-align: left;
        flex: 1;
        margin-bottom: 0;
    }
    
    .home-page .section-header .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 0.25rem;
    }
    
    .home-page .section-header .hero-subtitle {
        font-size: 1rem;
        margin-top: 0;
    }
    
    .home-page .section-header .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .home-page .section-header .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        min-height: 80vh;
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 4rem;
        white-space: normal;
        letter-spacing: 0.5px;
        line-height: 1;
        overflow: visible;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .about, .mission, .events, .shop, .impact, .contact {
        padding: 2rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Footer Login Link (Simple) */
.footer-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-login-link:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.footer-login-link i {
    font-size: 0.9rem;
}

/* Member Login Page */
.member-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #000000 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.member-login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.9), rgba(35, 20, 55, 0.8));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(139, 92, 246, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.login-header h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    color: #d1d5db;
    font-size: 1rem;
}

.login-messages {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.login-form label i {
    color: #8b5cf6;
    margin-right: 0.5rem;
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
}

.login-footer i {
    color: #8b5cf6;
    margin-right: 0.5rem;
}

/* Member Dashboard */
.member-dashboard-page {
    min-height: 100vh;
    padding: 2rem 0;
    background: #000000;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.dashboard-title h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.dashboard-title h1 i {
    color: #8b5cf6;
    margin-right: 0.75rem;
}

.dashboard-title p {
    color: #d1d5db;
    font-size: 1.1rem;
}

.btn-logout {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-card {
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.8), rgba(35, 20, 55, 0.6));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.summary-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.9), rgba(35, 20, 55, 0.7));
}

.summary-card:active {
    transform: translateY(-2px);
}

.summary-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.summary-content {
    flex: 1;
}

.summary-label {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-value {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.summary-amount {
    color: #8b5cf6;
    font-size: 1.1rem;
    font-weight: 600;
}

.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #8b5cf6;
    border-bottom-color: #8b5cf6;
}

.dashboard-tab-content {
    display: none;
}

.dashboard-tab-content.active {
    display: block;
}

.tab-header {
    margin-bottom: 1.5rem;
}

.tab-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.tab-header h2 i {
    color: #8b5cf6;
    margin-right: 0.75rem;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    background: linear-gradient(135deg, rgba(20, 10, 35, 0.6), rgba(35, 20, 55, 0.4));
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.dashboard-table thead {
    background: rgba(139, 92, 246, 0.2);
}

.dashboard-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #8b5cf6;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.dashboard-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.dashboard-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.1);
}

.status-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.status-succeeded {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.status-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.status-failed {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

.badge-yes {
    color: #86efac;
    font-weight: 600;
}

.badge-no {
    color: #9ca3af;
}

.sponsor-level {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.sponsor-silver {
    background: rgba(156, 163, 175, 0.2);
    color: #d1d5db;
    border: 1px solid rgba(156, 163, 175, 0.5);
}

.sponsor-gold {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.sponsor-platinum {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.5);
}

.delivery-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.delivery-pickup {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.5);
}

.delivery-shipping {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.5);
}

.delivery-unknown {
    background: rgba(156, 163, 175, 0.2);
    color: #d1d5db;
    border: 1px solid rgba(156, 163, 175, 0.5);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #9ca3af;
}

.empty-state i {
    font-size: 4rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .dashboard-summary {
        grid-template-columns: 1fr;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .dashboard-table-wrapper {
        padding: 1rem;
    }
    
    .dashboard-table {
        font-size: 0.85rem;
    }
    
    .dashboard-table th,
    .dashboard-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .dashboard-table th:nth-child(5),
    .dashboard-table td:nth-child(5),
    .dashboard-table th:nth-child(6),
    .dashboard-table td:nth-child(6) {
        max-width: 150px;
        word-wrap: break-word;
    }
}
