* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 0;
}

:root {
    --primary-red: #DC143C;
    --dark-red: #B22222;
    --light-red: #FF6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.nav-brand h1 {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
}

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

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

.nav-menu a:hover {
    color: var(--primary-red);
}

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

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

.nav-menu a.active {
    color: var(--primary-red);
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(220, 20, 60, 0.05);
    color: var(--primary-red);
    padding-left: 1.8rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 900px;
    position: relative;
    margin-top: 70px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(220, 20, 60, 0.6),
        0 0 30px rgba(220, 20, 60, 0.4);
    animation: heroParticleFloat 20s linear infinite;
    opacity: 0;
}

.hero-particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.hero-particle:nth-child(2) {
    width: 8px;
    height: 8px;
    left: 20%;
    animation-delay: -2s;
    animation-duration: 18s;
}

.hero-particle:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 30%;
    animation-delay: -4s;
    animation-duration: 20s;
}

.hero-particle:nth-child(4) {
    width: 7px;
    height: 7px;
    left: 40%;
    animation-delay: -1s;
    animation-duration: 16s;
}

.hero-particle:nth-child(5) {
    width: 6px;
    height: 6px;
    left: 50%;
    animation-delay: -3s;
    animation-duration: 22s;
}

.hero-particle:nth-child(6) {
    width: 9px;
    height: 9px;
    left: 60%;
    animation-delay: -5s;
    animation-duration: 17s;
}

.hero-particle:nth-child(7) {
    width: 5px;
    height: 5px;
    left: 70%;
    animation-delay: -2.5s;
    animation-duration: 19s;
}

.hero-particle:nth-child(8) {
    width: 7px;
    height: 7px;
    left: 80%;
    animation-delay: -4.5s;
    animation-duration: 21s;
}

.hero-particle:nth-child(9) {
    width: 6px;
    height: 6px;
    left: 15%;
    animation-delay: -1.5s;
    animation-duration: 18s;
}

.hero-particle:nth-child(10) {
    width: 8px;
    height: 8px;
    left: 25%;
    animation-delay: -3.5s;
    animation-duration: 16s;
}

.hero-particle:nth-child(11) {
    width: 5px;
    height: 5px;
    left: 35%;
    animation-delay: -0.5s;
    animation-duration: 20s;
}

.hero-particle:nth-child(12) {
    width: 7px;
    height: 7px;
    left: 45%;
    animation-delay: -2.8s;
    animation-duration: 17s;
}

.hero-particle:nth-child(13) {
    width: 6px;
    height: 6px;
    left: 55%;
    animation-delay: -4.2s;
    animation-duration: 19s;
}

.hero-particle:nth-child(14) {
    width: 8px;
    height: 8px;
    left: 65%;
    animation-delay: -1.2s;
    animation-duration: 21s;
}

.hero-particle:nth-child(15) {
    width: 5px;
    height: 5px;
    left: 75%;
    animation-delay: -3.8s;
    animation-duration: 18s;
}

@keyframes heroParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(50vh) translateX(30px) rotate(180deg) scale(1);
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100px) translateX(-30px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Sazova.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(0.6);
    transform: scale(1.1);
    animation: slowZoom 25s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.15); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220, 20, 60, 0.4) 0%, rgba(178, 34, 34, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 5rem;
    text-align: center;
    color: var(--white);
    overflow: visible;
}

.hero-content {
    margin-bottom: 4rem;
    margin-top: 6rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px 35px;
    z-index: 1001;
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.25) 0%, rgba(178, 34, 34, 0.25) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: badgeReveal 1s ease-out 0.2s both;
    box-shadow: 
        0 8px 32px rgba(220, 20, 60, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(220, 20, 60, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%),
        linear-gradient(45deg, transparent 30%, rgba(220, 20, 60, 0.2) 50%, transparent 70%);
    animation: badgeShine 3s linear infinite;
    pointer-events: none;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: badgePulse 2s ease-in-out infinite;
    pointer-events: none;
}

.hero-badge:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 
        0 12px 48px rgba(220, 20, 60, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset,
        0 0 60px rgba(220, 20, 60, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.badge-year {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--white);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(220, 20, 60, 0.5);
    position: relative;
    z-index: 2;
    font-variant-numeric: tabular-nums;
    animation: badgeTextGlow 2s ease-in-out infinite;
}

.badge-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
        );
    border-radius: 50px;
    opacity: 0.5;
}

@keyframes badgeReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-20px) rotate(-10deg);
    }
    60% {
        transform: scale(1.1) translateY(0) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(0deg);
    }
}

@keyframes badgeShine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    50% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes badgeTextGlow {
    0%, 100% {
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(220, 20, 60, 0.5);
    }
    50% {
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(220, 20, 60, 0.8),
            0 0 40px rgba(255, 23, 68, 0.6);
    }
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    animation: heroLogoFloat 0.8s ease-out 0.3s both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: heroLogoGlow 3s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes heroLogoFloat {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroLogoGlow {
    0% {
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)) brightness(1);
    }
    100% {
        filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.3)) brightness(1.1);
    }
}

.hero-title {
    font-size: 9rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -4px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: titleReveal 1s ease-out 0.5s both;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero {
    display: inline-block;
    padding: 20px 60px;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-red);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-hero:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.5);
}

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #DC143C 0%, #B22222 50%, #8B0000 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.countdown-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
}

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

.countdown-section .container {
    position: relative;
    z-index: 1;
}

.countdown-header {
    text-align: center;
    margin-bottom: 2rem;
}

.countdown-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

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

.countdown-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    display: inline-block;
}

.countdown-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.countdown-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.countdown-item {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    transition: transform 0.4s ease;
}

.countdown-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.countdown-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 12;
}

.circle-progress {
    fill: none;
    stroke: var(--white);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.countdown-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-variant-numeric: tabular-nums;
    animation: numberPulse 1s ease-in-out infinite;
}

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

.countdown-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Letter Section */
.letter-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 34, 34, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.letter-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(220, 20, 60, 0.03) 50px, rgba(220, 20, 60, 0.03) 100px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(178, 34, 34, 0.03) 50px, rgba(178, 34, 34, 0.03) 100px);
    opacity: 0.6;
    pointer-events: none;
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.letter-bg-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.letter-bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.letter-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.letter-left {
    position: relative;
    display: flex;
    flex-direction: column;
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.letter-left:hover {
    transform: rotate(0deg) translateY(-15px);
}

.letter-envelope {
    max-width: 100%;
    position: relative;
    perspective: 1200px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.envelope-flap {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotateX(-5deg);
    width: 96%;
    height: 70px;
    background: linear-gradient(135deg, #d4a574 0%, #c8966a 50%, #b8865a 100%);
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
    z-index: 2;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border-top: 3px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.6s ease;
}

.letter-left:hover .envelope-flap {
    transform: translateX(-50%) rotateX(-15deg) translateY(-5px);
}

.letter-wrapper {
    position: relative;
    z-index: 1;
    transform: rotate(-1deg) perspective(1000px) rotateY(-2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.letter-left:hover .letter-wrapper {
    transform: rotate(0deg) perspective(1000px) rotateY(0deg) translateY(-10px);
}

.letter-paper {
    background: 
        linear-gradient(90deg, transparent 59px, rgba(220, 20, 60, 0.12) 61px, rgba(220, 20, 60, 0.12) 62px, transparent 64px),
        linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fafafa 100%);
    padding: 2.5rem 4.5rem 2.5rem 5.5rem;
    box-shadow: 
        0 0 0 2px rgba(220, 20, 60, 0.1),
        0 0 0 4px rgba(255, 255, 255, 0.8),
        0 40px 100px rgba(0, 0, 0, 0.25),
        inset 0 0 80px rgba(220, 20, 60, 0.03),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
    max-height: 750px;
    overflow-y: auto;
    border-radius: 3px;
}

.letter-paper::-webkit-scrollbar {
    width: 8px;
}

.letter-paper::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, 0.05);
    border-radius: 4px;
}

.letter-paper::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60, 0.3);
    border-radius: 4px;
}

.letter-paper::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 20, 60, 0.5);
}

.letter-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 2px;
    height: 100%;
    background: rgba(220, 20, 60, 0.2);
}

.letter-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.05);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 8px;
}

.letter-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
    position: relative;
    z-index: 1;
}

.letter-logo-area {
    margin-bottom: 1rem;
}

.letter-seal {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(178, 34, 34, 0.1) 100%);
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.letter-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    position: relative;
}

.letter-title::before,
.letter-title::after {
    content: '✉';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0.3;
}

.letter-title::before {
    left: -40px;
}

.letter-title::after {
    right: -40px;
}

.letter-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 1px;
    font-family: 'Georgia', serif;
}

.letter-content {
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-family: 'Georgia', 'Times New Roman', serif;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.letter-greeting {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.letter-content p {
    margin-bottom: 0.7rem;
    text-align: justify;
    color: var(--text-dark);
    text-indent: 1.5rem;
}

.letter-closing {
    margin-top: 1.2rem;
    margin-bottom: 0;
    text-align: right;
}

.letter-closing p {
    margin-bottom: 1.2rem;
    font-style: italic;
    text-indent: 0;
}

.signature-area {
    display: inline-block;
    text-align: left;
    margin-top: 1rem;
}

.signature-line {
    width: 200px;
    height: 1px;
    background: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
}

.signature-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 4px;
    height: 4px;
    background: var(--text-dark);
    border-radius: 50%;
}

.letter-signature {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
    font-family: 'Brush Script MT', cursive;
    letter-spacing: 2px;
}

.letter-name {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Letter Image */
.letter-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transform: rotate(2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.letter-right:hover {
    transform: rotate(0deg) translateY(-15px);
}

.letter-image-wrapper {
    width: 100%;
    max-width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 750px;
}

.image-frame {
    position: relative;
    padding: 25px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%),
        linear-gradient(45deg, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    border-radius: 25px;
    box-shadow: 
        0 0 0 10px rgba(220, 20, 60, 0.12),
        0 0 0 18px rgba(255, 255, 255, 0.9),
        0 0 0 22px rgba(220, 20, 60, 0.08),
        0 50px 120px rgba(220, 20, 60, 0.3),
        inset 0 0 60px rgba(0, 0, 0, 0.03),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: stretch;
    max-height: 100%;
    border: 2px solid rgba(220, 20, 60, 0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: rotate(0deg);
}

.image-frame:hover::before {
    opacity: 1;
    transform: rotate(180deg);
}

.image-frame:hover {
    transform: translateY(-15px) scale(1.05) rotate(-1deg);
    box-shadow: 
        0 0 0 10px rgba(220, 20, 60, 0.18),
        0 0 0 18px rgba(255, 255, 255, 0.95),
        0 0 0 22px rgba(220, 20, 60, 0.12),
        0 60px 140px rgba(220, 20, 60, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 0.05),
        inset 0 2px 8px rgba(255, 255, 255, 0.95);
}

.letter-right:hover .image-frame {
    transform: translateY(-15px) scale(1.05) rotate(0deg);
}

.frame-decoration {
    position: absolute;
    background: var(--primary-red);
    z-index: 2;
}

.frame-top {
    top: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.4);
}

.frame-right {
    right: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 10px rgba(220, 20, 60, 0.4);
}

.frame-bottom {
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 4px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -2px 10px rgba(220, 20, 60, 0.4);
}

.frame-left {
    left: 0;
    top: 20%;
    width: 4px;
    height: 60%;
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 0 10px rgba(220, 20, 60, 0.4);
}

.letter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    filter: grayscale(15%) brightness(0.98) contrast(1.05);
    transition: all 0.5s ease;
    position: relative;
    z-index: 0;
}

.image-frame:hover .letter-image {
    filter: grayscale(0%) brightness(1) contrast(1.1);
    transform: scale(1.02);
}

/* Decorative Design Section */
.decorative-section {
    position: relative;
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    overflow: hidden;
}

.decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(220, 20, 60, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(178, 34, 34, 0.06) 0%, transparent 50%);
    opacity: 0.8;
}

.decorative-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(220, 20, 60, 0.02) 35px, rgba(220, 20, 60, 0.02) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(178, 34, 34, 0.02) 35px, rgba(178, 34, 34, 0.02) 70px);
    animation: patternShift 30s linear infinite;
}

@keyframes patternShift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

.decorative-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.decorative-center {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: centerPulse 4s ease-in-out infinite;
}

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

.decorative-logo-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    animation: logoFloat 6s ease-in-out infinite;
}

.decorative-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(220, 20, 60, 0.4));
    animation: logoRotate 20s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    25% { 
        transform: translateY(-20px) scale(1.05);
    }
    50% { 
        transform: translateY(-10px) scale(1.1);
    }
    75% { 
        transform: translateY(-25px) scale(1.05);
    }
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.decorative-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: logoGlow 3s ease-in-out infinite;
}

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

.decorative-text {
    position: relative;
}

.decorative-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.decorative-title::before,
.decorative-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.decorative-title::before {
    right: calc(100% + 20px);
}

.decorative-title::after {
    left: calc(100% + 20px);
}

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

/* Team Slider Section */
.team-slider-section {
    position: relative;
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
    width: 100%;
}

.team-slider-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(40px);
    animation: floatShape 20s ease-in-out infinite;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

.bg-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    bottom: 15%;
    left: 15%;
    animation-delay: 8s;
}

.bg-shape-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: 30%;
    right: 25%;
    animation-delay: 12s;
}

.bg-shape-5 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    bottom: 30%;
    right: 5%;
    animation-delay: 16s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.team-slider-section .container {
    max-width: 75%;
    width: 100%;
}

.team-slider-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.team-slider-title {
    font-size: 3.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 2.6px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(220, 20, 60, 0.3), 0 0 60px rgba(220, 20, 60, 0.1);
    }
    50% {
        text-shadow: 0 0 40px rgba(220, 20, 60, 0.5), 0 0 80px rgba(220, 20, 60, 0.2);
    }
}

.team-slider-title::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 5.2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2.6px;
}

.team-slider-subtitle {
    font-size: 1.43rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1.3px;
    margin-top: 2rem;
    text-transform: uppercase;
}

.team-slider-wrapper {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.6rem;
    z-index: 1;
}

.team-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 78px;
    border-radius: 26px;
    padding: 2.6rem 0;
    width: calc(100% - 156px);
}

.team-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 1.8rem;
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.team-slider-track:active {
    cursor: grabbing;
}

.team-member-card {
    flex: 0 0 auto;
    min-width: 480px;
    max-width: 640px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 13px 52px rgba(0, 0, 0, 0.08),
        0 2.6px 13px rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out backwards;
}

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

.team-member-card:nth-child(1) { animation-delay: 0.1s; }
.team-member-card:nth-child(2) { animation-delay: 0.15s; }
.team-member-card:nth-child(3) { animation-delay: 0.2s; }
.team-member-card:nth-child(4) { animation-delay: 0.25s; }
.team-member-card:nth-child(5) { animation-delay: 0.3s; }
.team-member-card:nth-child(6) { animation-delay: 0.35s; }
.team-member-card:nth-child(n+7) { animation-delay: 0.4s; }

.team-member-card:hover {
    transform: translateY(-19.5px) scale(1.05) rotateY(2deg);
    box-shadow: 
        0 26px 78px rgba(0, 0, 0, 0.15),
        0 6.5px 26px rgba(220, 20, 60, 0.2),
        0 0 40px rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.team-member-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.member-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member-card:hover .member-photo {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(220, 20, 60, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.team-member-info {
    padding: 0.65rem;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 0.25px;
    transition: color 0.3s ease;
}

.team-member-card:hover .member-name {
    color: var(--primary-red);
}

.member-role {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.member-learn-more-btn {
    margin-top: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.member-learn-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.member-learn-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.member-learn-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.member-learn-more-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--white);
    border: 2.6px solid var(--primary-red);
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 0 6.5px 26px rgba(220, 20, 60, 0.2);
}

.slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-btn svg {
    width: 31px;
    height: 31px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.975rem;
    margin-top: 3.25rem;
    flex-wrap: wrap;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(220, 20, 60, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.4);
}

/* Responsive styles for team slider */
@media (max-width: 1024px) {
    .team-member-card {
        min-width: 400px;
        max-width: 560px;
    }
    
    .team-slider-container {
        margin: 0 50px;
    }
}

@media (max-width: 768px) {
    .team-slider-section {
        padding: 2.5rem 0;
    }
    
    .team-slider-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .team-slider-header {
        margin-bottom: 2rem;
    }
    
    .team-slider-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .team-slider-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .team-slider-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
        letter-spacing: 0.5px;
    }
    
    .team-slider-wrapper {
        padding: 0;
    }
    
    .team-slider-container {
        margin: 0 50px !important;
        padding: 1.5rem 0;
        width: calc(100% - 100px) !important;
        border-radius: 20px;
    }
    
    .team-member-card {
        min-width: 280px;
        max-width: 320px;
    }
    
    .team-slider-track {
        gap: 1.2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-role {
        font-size: 0.75rem;
    }
    
    .team-member-info {
        padding: 1rem 0.8rem;
    }
    
    .member-learn-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .slider-dots {
        margin-top: 2rem;
        gap: 0.6rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .team-slider-section {
        padding: 2rem 0;
    }
    
    .team-slider-section .container {
        padding: 0 0.5rem;
    }
    
    .team-slider-header {
        margin-bottom: 1.5rem;
    }
    
    .team-slider-title {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }
    
    .team-slider-title::after {
        width: 50px;
        height: 2.5px;
        bottom: -6px;
    }
    
    .team-slider-subtitle {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .team-slider-wrapper {
        padding: 0;
    }
    
    .team-slider-container {
        margin: 0 40px !important;
        padding: 1rem 0;
        width: calc(100% - 80px) !important;
        border-radius: 16px;
    }
    
    .team-member-card {
        min-width: 240px !important;
        max-width: 280px !important;
        flex: 0 0 auto !important;
    }
    
    .team-slider-track {
        gap: 1rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        border-width: 1.5px;
    }
    
    .slider-btn-prev {
        left: 2px;
    }
    
    .slider-btn-next {
        right: 2px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .member-name {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .member-role {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .team-member-info {
        padding: 0.8rem 0.6rem;
    }
    
    .member-learn-more-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    .slider-dots {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
    
    .team-member-image {
        padding-top: 70%;
    }
}

/* Notes Section */
.notes-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
    overflow: hidden;
    min-height: 500px;
}

.notes-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.notes-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.notes-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.notes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.notes-board {
    position: relative;
    min-height: 400px;
    padding: 3rem 2rem;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(220, 20, 60, 0.03) 98px,
            rgba(220, 20, 60, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(220, 20, 60, 0.03) 98px,
            rgba(220, 20, 60, 0.03) 100px
        );
    border-radius: 20px;
    box-shadow: 
        inset 0 0 50px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.note {
    position: absolute;
    width: 200px;
    min-height: 180px;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 2px 5px rgba(0, 0, 0, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transform: rotate(var(--rotation));
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: noteAppear 0.6s ease-out var(--delay) both;
    border-top: 3px solid rgba(255, 235, 59, 0.8);
}

.note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.3) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.note:hover {
    transform: rotate(0deg) scale(1.1) translateY(-10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.note-content {
    margin-top: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.note-1 {
    top: 10%;
    left: 8%;
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
}

.note-2 {
    top: 25%;
    right: 12%;
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    border-top-color: rgba(76, 175, 80, 0.8);
}

.note-3 {
    top: 50%;
    left: 15%;
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
    border-top-color: rgba(33, 150, 243, 0.8);
}

.note-4 {
    top: 15%;
    left: 45%;
    background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 100%);
    border-top-color: rgba(233, 30, 99, 0.8);
}

.note-5 {
    bottom: 20%;
    right: 20%;
    background: linear-gradient(135deg, #ffe0b2 0%, #ffcc80 100%);
    border-top-color: rgba(255, 152, 0, 0.8);
}

.note-6 {
    top: 60%;
    right: 8%;
    background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
    border-top-color: rgba(156, 39, 176, 0.8);
}

.note-7 {
    bottom: 15%;
    left: 35%;
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
}

.note-8 {
    top: 40%;
    left: 60%;
    background: linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%);
    border-top-color: rgba(63, 81, 181, 0.8);
}

@keyframes noteAppear {
    from {
        opacity: 0;
        transform: rotate(var(--rotation)) scale(0.5) translateY(50px);
    }
    to {
        opacity: 1;
        transform: rotate(var(--rotation)) scale(1) translateY(0);
    }
}

.add-note-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.4),
        0 4px 10px rgba(220, 20, 60, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.add-note-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-note-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-note-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(220, 20, 60, 0.5),
        0 6px 15px rgba(220, 20, 60, 0.4);
}

.add-note-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.add-note-btn:hover .btn-icon {
    transform: rotate(15deg) scale(1.2);
}

.btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Popup Modal */
.note-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.note-popup-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.note-popup {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(220, 20, 60, 0.2);
    position: relative;
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid var(--primary-red);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.popup-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.popup-content {
    text-align: center;
    margin-bottom: 2rem;
}

.popup-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.popup-close-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.popup-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.popup-close-btn:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .note {
        width: 180px;
        min-height: 160px;
        padding: 1rem;
    }
    
    .note-content {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .notes-section {
        padding: 3rem 0;
    }
    
    .notes-container {
        padding: 0 1rem;
    }
    
    .notes-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .notes-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .notes-title::after {
        width: 60px;
        height: 3px;
    }
    
    .notes-board {
        min-height: 600px;
        padding: 2rem 1rem;
        position: relative;
    }
    
    .note {
        width: 140px;
        min-height: 130px;
        padding: 0.8rem;
        font-size: 0.75rem;
        position: absolute !important;
    }
    
    /* Mobilde notları düzenli yerleştir */
    .note-1 {
        top: 5% !important;
        left: 5% !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-2 {
        top: 5% !important;
        right: 5% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-3 {
        top: 35% !important;
        left: 5% !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-4 {
        top: 20% !important;
        left: 50% !important;
        transform: translateX(-50%) rotate(var(--rotation)) !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-5 {
        bottom: 25% !important;
        right: 5% !important;
        left: auto !important;
        top: auto !important;
    }
    
    .note-6 {
        top: 50% !important;
        right: 5% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-7 {
        bottom: 10% !important;
        left: 50% !important;
        transform: translateX(-50%) rotate(var(--rotation)) !important;
        right: auto !important;
        top: auto !important;
    }
    
    .note-8 {
        top: 35% !important;
        right: 5% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-content {
        font-size: 0.7rem;
        margin-top: 18px;
        line-height: 1.4;
    }
    
    .add-note-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .note-popup {
        padding: 2rem;
        max-width: 90%;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-content p {
        font-size: 1rem;
    }
}

/* Schedule Section Responsive */
@media (max-width: 768px) {
    .schedule {
        padding: 2rem 0 !important;
    }
    
    .schedule-mystery-wrapper {
        margin: 1rem auto 0;
        max-height: 400px;
        overflow: hidden;
    }
    
    .schedule-timeline {
        max-height: 350px;
        overflow: hidden;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.8rem !important;
    }
    
    .timeline-date {
        width: 100%;
        min-width: auto;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    .timeline-content {
        padding: 0.8rem 1rem !important;
    }
    
    .timeline-content h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .timeline-content p {
        font-size: 0.8rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .timeline-detail {
        font-size: 0.75rem !important;
        margin-top: 0.3rem !important;
    }
    
    .mystery-overlay {
        padding: 1.2rem 1rem;
        min-width: 85%;
        max-width: 280px;
    }
    
    .mystery-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .mystery-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .mystery-text {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .mystery-subtext {
        font-size: 0.8rem;
    }
    
    .schedule-blurred {
        filter: blur(6px);
    }
}

/* Sponsors Section Responsive */
@media (max-width: 1024px) {
    .sponsor-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .sponsors-slider-container {
        margin: 0 50px;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 3rem 0;
    }
    
    .sponsors-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .sponsors-header {
        margin-bottom: 2.5rem;
    }
    
    .sponsors-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .sponsors-subtitle {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .sponsors-slider-wrapper {
        padding: 0;
    }
    
    .sponsors-slider-container {
        margin: 0 60px !important;
        padding: 1.5rem 0;
        width: calc(100% - 120px) !important;
    }
    
    .sponsor-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        min-height: 180px;
        padding: 2rem;
    }
    
    .sponsor-logo {
        max-height: 120px;
    }
    
    .sponsors-slider-track {
        gap: 1.5rem;
    }
    
    .sponsors-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .sponsors-slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .sponsors-section .container {
        padding: 0 0.5rem;
    }
    
    .sponsors-slider-wrapper {
        padding: 0;
    }
    
    .sponsors-slider-container {
        margin: 0 50px !important;
        padding: 1.5rem 0;
        width: calc(100% - 100px) !important;
    }
    
    .sponsor-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        width: 100% !important;
        min-height: 160px;
        padding: 1.5rem;
    }
    
    .sponsor-logo {
        max-height: 100px;
    }
    
    .sponsors-slider-track {
        gap: 1rem;
    }
    
    .sponsors-slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .sponsors-slider-btn svg {
        width: 18px;
        height: 18px;
    }
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(178, 34, 34, 0.08) 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.08);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(220, 20, 60, 0.1) 100%);
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    box-shadow: 0 8px 30px rgba(178, 34, 34, 0.08);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.09) 0%, rgba(178, 34, 34, 0.09) 100%);
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
    box-shadow: 0 10px 35px rgba(220, 20, 60, 0.08);
}

.shape-4 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.09) 0%, rgba(220, 20, 60, 0.09) 100%);
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
    box-shadow: 0 8px 32px rgba(178, 34, 34, 0.08);
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(178, 34, 34, 0.08) 100%);
    top: 50%;
    left: 5%;
    animation-delay: 0.5s;
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.08);
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(20px, -20px) scale(1.1);
    }
    66% { 
        transform: translate(-15px, 15px) scale(0.9);
    }
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.decorative-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
    animation: elementMove 12s linear infinite;
}

.elem-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.elem-2 {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.elem-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 6s;
}

.elem-4 {
    top: 40%;
    right: 15%;
    animation-delay: 9s;
}

@keyframes elementMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(200px, -200px) scale(1.5);
        opacity: 0;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.9rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    margin-bottom: 0;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
    border: none;
    border-radius: 15px;
    min-width: 140px;
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item::after {
    display: none;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.6), 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FF1744 0%, #DC143C 100%);
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: iconBounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.stat-item:nth-child(2) .stat-icon {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-icon {
    animation-delay: 0.4s;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.2s ease;
    font-variant-numeric: tabular-nums;
    animation: numberReveal 0.6s ease-out;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

@keyframes numberReveal {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.stat-number.animating {
    animation: numberPulse 0.15s ease-out;
}

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

.stat-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    line-height: 1.3;
    white-space: nowrap;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

.btn-primary {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
}

/* About Section - Ultra Creative Design */
.about {
    position: relative;
    overflow: hidden;
    padding: 12rem 0;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    isolation: isolate;
}

/* Morphing Background Blobs */
.about-morph-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.morph-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(100px);
    opacity: 0.2;
    animation: morphBlob 20s ease-in-out infinite;
}

.morph-blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation-duration: 25s;
}

.morph-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-duration: 30s;
    animation-delay: -8s;
}

.morph-blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation-duration: 35s;
    animation-delay: -15s;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: translate(50px, -50px) scale(1.1) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translate(-30px, 30px) scale(0.9) rotate(180deg);
    }
    75% {
        border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
        transform: translate(30px, 40px) scale(1.05) rotate(270deg);
    }
}

/* Background Particles */
.about-particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: bgParticleFloat 25s linear infinite;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.bg-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.bg-particle:nth-child(2) {
    left: 25%;
    animation-delay: -3s;
    animation-duration: 22s;
}

.bg-particle:nth-child(3) {
    left: 40%;
    animation-delay: -6s;
    animation-duration: 18s;
}

.bg-particle:nth-child(4) {
    left: 55%;
    animation-delay: -9s;
    animation-duration: 24s;
}

.bg-particle:nth-child(5) {
    left: 70%;
    animation-delay: -12s;
    animation-duration: 21s;
}

.bg-particle:nth-child(6) {
    left: 85%;
    animation-delay: -15s;
    animation-duration: 23s;
}

.bg-particle:nth-child(7) {
    left: 20%;
    animation-delay: -5s;
    animation-duration: 19s;
}

.bg-particle:nth-child(8) {
    left: 60%;
    animation-delay: -10s;
    animation-duration: 25s;
}

@keyframes bgParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(30px) scale(1);
        opacity: 0;
    }
}

/* Pattern Overlay */
.about-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Pattern Circles - Big Red Circles (Distorted) */
.pattern-circle {
    position: absolute;
    background: radial-gradient(ellipse, 
        rgba(220, 20, 60, 0.12) 0%, 
        rgba(220, 20, 60, 0.08) 40%, 
        rgba(220, 20, 60, 0.04) 70%, 
        transparent 100%);
    border: 3px solid rgba(220, 20, 60, 0.1);
    filter: blur(2px);
    animation: patternCircleFloat 20s ease-in-out infinite;
}

.pattern-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    animation-duration: 25s;
    transform: rotate(15deg) scaleX(1.1) scaleY(0.95);
}

.pattern-circle-2 {
    width: 350px;
    height: 350px;
    top: 20%;
    right: -80px;
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    animation-duration: 30s;
    animation-delay: -8s;
    transform: rotate(-20deg) scaleX(0.9) scaleY(1.15);
}

.pattern-circle-3 {
    width: 450px;
    height: 450px;
    bottom: -120px;
    left: 5%;
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    animation-duration: 28s;
    animation-delay: -12s;
    transform: rotate(25deg) scaleX(1.2) scaleY(0.85);
}

.pattern-circle-4 {
    width: 380px;
    height: 380px;
    top: 50%;
    right: 10%;
    border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
    animation-duration: 32s;
    animation-delay: -5s;
    transform: rotate(-15deg) scaleX(0.85) scaleY(1.1);
}

.pattern-circle-5 {
    width: 320px;
    height: 320px;
    top: 10%;
    left: 50%;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    animation-duration: 26s;
    animation-delay: -15s;
    transform: rotate(30deg) scaleX(1.15) scaleY(0.9);
}

.pattern-circle-6 {
    width: 360px;
    height: 360px;
    bottom: 10%;
    right: -50px;
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
    animation-duration: 29s;
    animation-delay: -10s;
    transform: rotate(-25deg) scaleX(0.95) scaleY(1.2);
}

@keyframes patternCircleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }
    25% {
        transform: translate(50px, -50px) scale(1.15) rotate(10deg);
        opacity: 0.35;
        border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    }
    50% {
        transform: translate(-40px, 40px) scale(0.95) rotate(-10deg);
        opacity: 0.32;
        border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    }
    75% {
        transform: translate(40px, 50px) scale(1.1) rotate(5deg);
        opacity: 0.35;
        border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
    }
}

/* Container */
.about .container {
    position: relative;
    z-index: 1;
}

/* Header */
.about-header {
    margin-bottom: 8rem;
    text-align: center;
}

.about-title-container {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.about-title-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    opacity: 0.4;
    letter-spacing: 2px;
    animation: numberReveal 1s ease-out;
}

.about-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 12px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out 0.2s both;
    position: relative;
}

.about-title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    animation: accentReveal 1.5s ease-out 0.5s both;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

@keyframes numberReveal {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 0.4;
        transform: translateX(0);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes accentReveal {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Content */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
}

/* Center Logo Piece */
.about-center-piece {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-section-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.center-logo-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Side Decorations */
.logo-side-decoration {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}

.logo-side-left {
    align-items: flex-end;
}

.logo-side-right {
    align-items: flex-start;
}

.side-deco-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: none;
}

.logo-side-left .side-deco-item {
    flex-direction: row-reverse;
}

.logo-side-right .side-deco-item {
    flex-direction: row;
}

.side-deco-item:hover {
    transform: none;
}

.logo-side-left .side-deco-item:hover {
    transform: none;
}

.deco-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-red);
    padding: 1rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.15),
        0 0 0 1px rgba(220, 20, 60, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(220, 20, 60, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(220, 20, 60, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(220, 20, 60, 0.25));
    animation: none;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.deco-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 50%, 
        rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
}

.side-deco-item:hover .deco-text {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(220, 20, 60, 0.3),
        0 0 0 3px rgba(220, 20, 60, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -1px 2px rgba(220, 20, 60, 0.1),
        0 0 30px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.5);
    color: rgba(178, 34, 34, 1);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 100%);
    filter: drop-shadow(0 8px 20px rgba(220, 20, 60, 0.35));
}

.side-deco-item:hover .deco-text::after {
    opacity: 1;
}

/* Logo Orbits */
.logo-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
}

.logo-orbit-inner {
    width: 350px;
    height: 350px;
    animation-duration: 25s;
    border-style: dashed;
}

.logo-orbit-outer {
    width: 500px;
    height: 500px;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Logo Rings */
.logo-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.logo-ring-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.ring-2 {
    width: 320px;
    height: 320px;
    animation-delay: 1.3s;
    opacity: 0.7;
}

.ring-3 {
    width: 360px;
    height: 360px;
    animation-delay: 2.6s;
    opacity: 0.5;
}

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

/* Logo Glow */
.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

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

/* Logo Image */
.logo-image-container {
    position: relative;
    z-index: 3;
    animation: logoFloat 6s ease-in-out infinite;
}

.center-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(220, 20, 60, 0.4));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.center-logo-wrapper:hover .center-logo {
    transform: scale(1.1) rotate(5deg);
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Orbiting Particles */
.logo-orbiting-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 2;
}

.orbiting-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.9);
    animation: particleOrbit 12s linear infinite;
}

.orbiting-particle:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.orbiting-particle:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: -3s;
}

.orbiting-particle:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: -6s;
}

.orbiting-particle:nth-child(4) {
    top: 50%;
    left: 0;
    animation-delay: -9s;
}

@keyframes particleOrbit {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

/* Text Panels Container */
.about-text-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: stretch;
}

/* Side Text Panels */
.side-text-panel {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(220, 20, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(220, 20, 60, 0.12);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.side-text-left::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    border-radius: 0 25px 25px 0;
    transition: width 0.6s ease;
}

.side-text-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    border-radius: 25px 0 0 25px;
    transition: width 0.6s ease;
}

.side-text-panel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(220, 20, 60, 0.15),
        0 0 0 3px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.side-text-panel:hover::before {
    width: 8px;
}

.panel-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.side-text-panel:hover .panel-reveal {
    opacity: 1;
}

.panel-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.panel-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(220, 20, 60, 0.2));
}

.side-text-left .panel-icon {
    animation-delay: 0s;
}

.side-text-right .panel-icon {
    animation-delay: 1.5s;
}

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

.panel-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    transition: transform 0.4s ease;
}

.side-text-panel:hover .panel-title {
    transform: translateX(5px);
}

.side-text-right:hover .panel-title {
    transform: translateX(-5px);
}

.panel-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    text-align: justify;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    margin-bottom: 1rem;
}

.panel-text:last-child {
    margin-bottom: 0;
}

.side-text-panel:hover .panel-text {
    opacity: 1;
}

/* About More Button */
.about-more-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding: 0 2rem;
}

.about-more-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 10px 30px rgba(220, 20, 60, 0.3),
        0 0 0 0 rgba(220, 20, 60, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.about-more-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.about-more-button:hover::before {
    width: 300px;
    height: 300px;
}

.about-more-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 20, 60, 0.5),
        0 0 0 4px rgba(220, 20, 60, 0.2);
}

.about-more-button svg {
    transition: transform 0.3s ease;
}

.about-more-button:hover svg {
    transform: translateX(5px);
}

.about-more-button span {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .about {
        padding: 10rem 0;
    }
    
    .about-header {
        margin-bottom: 6rem;
    }
    
    .about-title {
        font-size: 4rem;
        letter-spacing: 8px;
    }
    
    .about-content {
        gap: 6rem;
    }
    
    .center-logo-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .logo-orbit-inner {
        width: 280px;
        height: 280px;
    }
    
    .logo-orbit-outer {
        width: 400px;
        height: 400px;
    }
    
    .ring-1 {
        width: 220px;
        height: 220px;
    }
    
    .ring-2 {
        width: 260px;
        height: 260px;
    }
    
    .ring-3 {
        width: 300px;
        height: 300px;
    }
    
    .logo-glow-effect {
        width: 320px;
        height: 320px;
    }
    
    .center-logo {
        width: 220px;
    }
    
    .logo-orbiting-particles {
        width: 320px;
        height: 320px;
    }
    
    .orbiting-particle {
        animation: particleOrbitTablet 12s linear infinite;
    }
    
    @keyframes particleOrbitTablet {
        0% {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }
    
    .about-center-piece {
        gap: 4rem;
    }
    
    .logo-section-wrapper {
        gap: 2rem;
    }
    
    .logo-side-decoration {
        gap: 2rem;
    }
    
    .deco-text {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .deco-line {
        width: 60px;
    }
    
    .about-text-panels {
        gap: 2.5rem;
    }
    
    .side-text-panel {
        padding: 2.5rem;
    }
    
    .panel-icon {
        font-size: 2.5rem;
    }
    
    .panel-title {
        font-size: 1.4rem;
    }
    
    .panel-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 8rem 0;
    }
    
    .about-header {
        margin-bottom: 5rem;
    }
    
    .about-title-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-title-number {
        font-size: 1.2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
    
    .about-title-accent {
        width: 60px;
    }
    
    .about-content {
        gap: 5rem;
    }
    
    .center-logo-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .logo-orbit-inner {
        width: 200px;
        height: 200px;
    }
    
    .logo-orbit-outer {
        width: 300px;
        height: 300px;
    }
    
    .ring-1 {
        width: 160px;
        height: 160px;
    }
    
    .ring-2 {
        width: 190px;
        height: 190px;
    }
    
    .ring-3 {
        width: 220px;
        height: 220px;
    }
    
    .logo-glow-effect {
        width: 240px;
        height: 240px;
    }
    
    .center-logo {
        width: 160px;
    }
    
    .logo-orbiting-particles {
        width: 240px;
        height: 240px;
    }
    
    .orbiting-particle {
        animation: particleOrbitMobile 12s linear infinite;
    }
    
    @keyframes particleOrbitMobile {
        0% {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
    
    .about-center-piece {
        gap: 3rem;
    }
    
    .logo-section-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .center-logo-wrapper {
        margin: 0 auto;
    }
    
    .logo-side-decoration {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .logo-side-left,
    .logo-side-right {
        align-items: center;
    }
    
    .logo-side-left .side-deco-item,
    .logo-side-right .side-deco-item {
        flex-direction: column;
    }
    
    .side-deco-item:hover {
        transform: none;
    }
    
    .side-deco-item:hover .deco-text {
        transform: translateY(-3px) scale(1.04);
    }
    
    .logo-side-left .side-deco-item:hover {
        transform: none;
    }
    
    .deco-text {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .deco-line {
        width: 45px;
        height: 2px;
    }
    
    .logo-side-left .deco-line,
    .logo-side-right .deco-line {
        transform: rotate(90deg);
    }
    
    .side-deco-item:hover .deco-line {
        width: 70px;
    }
    
    .about-text-panels {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .side-text-panel {
        padding: 2.5rem;
    }
    
    .about-more-button-wrapper {
        margin-top: 3rem;
    }
    
    .about-more-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .panel-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .panel-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .panel-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* Committees Section */
.committees {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
}

.committees-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.committees-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Committees More Button */
.committees-more-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    padding: 0 2rem;
}

.committees-more-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 
        0 10px 30px rgba(220, 20, 60, 0.3),
        0 0 0 0 rgba(220, 20, 60, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.committees-more-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.committees-more-button:hover::before {
    width: 300px;
    height: 300px;
}

.committees-more-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 20, 60, 0.5),
        0 0 0 4px rgba(220, 20, 60, 0.2);
}

.committees-more-button svg {
    transition: transform 0.3s ease;
}

.committees-more-button:hover svg {
    transform: translateX(5px);
}

.committees-more-button span {
    position: relative;
    z-index: 1;
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.committee-card {
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #fafafa 100%);
    padding: 0;
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 2px rgba(220, 20, 60, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(0) perspective(1000px) rotateX(0deg);
    border: 3px solid rgba(220, 20, 60, 0.08);
    min-height: 400px;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #FF1744 30%, #FF6B6B 60%, #B22222 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.6);
    border-radius: 30px 30px 0 0;
}

.committee-card:hover::before {
    transform: scaleX(1);
}

.committee-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(220, 20, 60, 0.12) 0%, transparent 70%),
        radial-gradient(circle at 40% 40%, rgba(255, 23, 68, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: rotate(0deg) scale(0.8);
    pointer-events: none;
    border-radius: 50%;
}

.committee-card:hover::after {
    opacity: 1;
    transform: rotate(180deg) scale(1);
}

.committee-card:hover {
    transform: translateY(-25px) scale(1.08) perspective(1000px) rotateX(-8deg);
    box-shadow: 
        0 40px 100px rgba(220, 20, 60, 0.35),
        0 0 0 4px rgba(220, 20, 60, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.95),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border-color: rgba(220, 20, 60, 0.4);
    background: 
        linear-gradient(135deg, #ffffff 0%, #fefefe 50%, #ffffff 100%);
}

.committee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    z-index: 0;
    opacity: 0.2;
    transition: all 0.6s ease;
}

.committee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s ease;
}

.committee-card:hover .committee-image {
    opacity: 0.3;
}

.committee-card:hover .committee-image img {
    filter: grayscale(40%) brightness(1.1);
    transform: scale(1.1);
}

.committee-icon {
    font-size: 5.5rem;
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, transparent 100%);
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(220, 20, 60, 0.1);
}

.committee-card:hover .committee-icon {
    transform: translateY(-15px) scale(1.25) rotateY(20deg) rotateZ(-5deg);
    filter: drop-shadow(0 20px 50px rgba(220, 20, 60, 0.6));
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(255, 23, 68, 0.05) 100%);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.3);
}

.committee-card:nth-child(2) .committee-icon {
    animation-delay: 0.5s;
}

.committee-card:nth-child(3) .committee-icon {
    animation-delay: 1s;
}

.committee-card:nth-child(4) .committee-icon {
    animation-delay: 1.5s;
}

.committee-card:nth-child(5) .committee-icon {
    animation-delay: 2s;
}

.committee-card:nth-child(6) .committee-icon {
    animation-delay: 2.5s;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-8px) rotate(-2deg) scale(1.05);
    }
    50% { 
        transform: translateY(-12px) rotate(0deg) scale(1.1);
    }
    75% { 
        transform: translateY(-8px) rotate(2deg) scale(1.05);
    }
}

.committee-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    margin-top: 0;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
    min-height: 4rem;
}

.committee-card:hover .committee-header {
    transform: translateX(5px);
}

.committee-header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
    padding-top: 0.75rem;
}

.committee-level {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(178, 34, 34, 0.15) 100%);
    color: var(--primary-red);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid rgba(220, 20, 60, 0.3);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    margin-top: 0.75rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.committee-level::before {
    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.5s ease;
}

.committee-card:hover .committee-level::before {
    left: 100%;
}

.committee-card:hover .committee-level {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.committee-description {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.committee-stats {
    background: 
        linear-gradient(135deg, rgba(220, 20, 60, 0.06) 0%, rgba(178, 34, 34, 0.04) 100%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    padding: 2.5rem 2.5rem;
    margin: 0;
    border-top: 2px solid rgba(220, 20, 60, 0.15);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    border-radius: 0 0 30px 30px;
}

.committee-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.stat-row:last-of-type {
    margin-bottom: 0;
    margin-top: 1rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.stat-value {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(220, 20, 60, 0.2);
    transition: all 0.3s ease;
}

.committee-card:hover .stat-value {
    transform: scale(1.1);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(220, 20, 60, 0.12);
    border-radius: 12px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.15);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red) 0%, #FF1744 50%, #B22222 100%);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 
        0 0 15px rgba(220, 20, 60, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(220, 20, 60, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 25px rgba(220, 20, 60, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.committee-footer {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 1rem;
}

.committee-tag {
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF1744 50%, #B22222 100%);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 4px 15px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.committee-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.committee-card:hover .committee-tag::before {
    width: 300px;
    height: 300px;
}

.committee-card:hover .committee-tag {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.committee-title-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2.5rem 2rem 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05) 0%, rgba(178, 34, 34, 0.03) 100%);
    border-bottom: 2px solid rgba(220, 20, 60, 0.1);
}

.committee-title-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #FF1744 50%, var(--primary-red) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.committee-card:hover .committee-title-header::before {
    transform: scaleX(1);
}

.committee-title {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(220, 20, 60, 0.2);
    transition: all 0.4s ease;
}

.committee-card:hover .committee-title {
    transform: scale(1.05);
    letter-spacing: 4px;
}

.committee-coming-soon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem 2rem;
    position: relative;
}

.committee-coming-soon {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 50%, #FF6F00 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 
        0 8px 25px rgba(255, 193, 7, 0.5),
        0 4px 12px rgba(255, 152, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: comingSoonPulse 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.committee-coming-soon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.committee-card:hover .committee-coming-soon::before {
    width: 300px;
    height: 300px;
}

.committee-card:hover .committee-coming-soon {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(255, 193, 7, 0.6),
        0 6px 18px rgba(255, 152, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 50%, #FF8F00 100%);
}

@keyframes comingSoonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 193, 7, 0.5),
            0 4px 12px rgba(255, 152, 0, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.4),
            inset 0 -2px 4px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(255, 193, 7, 0.6),
            0 5px 15px rgba(255, 152, 0, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.5),
            inset 0 -2px 4px rgba(0, 0, 0, 0.15);
        transform: scale(1.02);
    }
}

/* Floating Particles */
.committees-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Corner Decorations */
.committees-corner-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.corner-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
}

.corner-left-top {
    top: -100px;
    left: -100px;
}

.corner-right-top {
    top: -100px;
    right: -100px;
    transform: rotate(90deg);
}

.corner-left-bottom {
    bottom: -100px;
    left: -100px;
    transform: rotate(-90deg);
}

.corner-right-bottom {
    bottom: -100px;
    right: -100px;
    transform: rotate(180deg);
}

.corner-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15) 0%, rgba(178, 34, 34, 0.15) 100%);
    filter: blur(40px);
    animation: cornerFloat 8s ease-in-out infinite;
}

.corner-left-top .shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.corner-left-top .shape-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    left: 100px;
    animation-delay: 1s;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(220, 20, 60, 0.12) 100%);
}

.corner-left-top .shape-3 {
    width: 120px;
    height: 120px;
    top: 150px;
    left: 150px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
}

.corner-right-top .shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-delay: 0.5s;
}

.corner-right-top .shape-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    left: 100px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(220, 20, 60, 0.12) 100%);
}

.corner-right-top .shape-3 {
    width: 120px;
    height: 120px;
    top: 150px;
    left: 150px;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
}

.corner-left-bottom .shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-delay: 1s;
}

.corner-left-bottom .shape-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    left: 100px;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(220, 20, 60, 0.12) 100%);
}

.corner-left-bottom .shape-3 {
    width: 120px;
    height: 120px;
    top: 150px;
    left: 150px;
    animation-delay: 3s;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
}

.corner-right-bottom .shape-1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 50px;
    animation-delay: 1.5s;
}

.corner-right-bottom .shape-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    left: 100px;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.12) 0%, rgba(220, 20, 60, 0.12) 100%);
}

.corner-right-bottom .shape-3 {
    width: 120px;
    height: 120px;
    top: 150px;
    left: 150px;
    animation-delay: 3.5s;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1) 0%, rgba(255, 23, 68, 0.1) 100%);
}

@keyframes cornerFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-15px, 15px) scale(0.9);
        opacity: 0.7;
    }
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    bottom: 30%;
    left: 30%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    top: 80%;
    right: 25%;
    animation-delay: 8s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(6) {
    top: 10%;
    right: 40%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Schedule Section */
.schedule {
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(220, 20, 60, 0.03) 20px,
            rgba(220, 20, 60, 0.03) 22px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(220, 20, 60, 0.03) 20px,
            rgba(220, 20, 60, 0.03) 22px
        ),
        linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

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

.schedule-mystery-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    z-index: 1;
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 10px 30px rgba(220, 20, 60, 0.2),
        inset 0 0 20px rgba(220, 20, 60, 0.05);
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.schedule-blurred {
    filter: blur(8px);
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

.mystery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(220, 20, 60, 0.15),
        inset 0 0 50px rgba(220, 20, 60, 0.05);
    border: 3px solid var(--primary-red);
    backdrop-filter: blur(10px);
    animation: mysteryPulse 2s ease-in-out infinite;
    min-width: 350px;
}

@keyframes mysteryPulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.2),
            0 10px 30px rgba(220, 20, 60, 0.15),
            inset 0 0 50px rgba(220, 20, 60, 0.05);
    }
    50% {
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.25),
            0 15px 40px rgba(220, 20, 60, 0.25),
            inset 0 0 60px rgba(220, 20, 60, 0.1);
    }
}

.mystery-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: mysteryBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(220, 20, 60, 0.3));
}

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

.mystery-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(220, 20, 60, 0.2);
}

.mystery-text {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.mystery-subtext {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.timeline-date {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
}

.timeline-content {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

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

.timeline-content p {
    color: var(--text-light);
}

.timeline-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Sponsors Section */
.sponsors-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    overflow: hidden;
}

.sponsors-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.sponsors-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.sponsors-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.sponsors-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    text-transform: uppercase;
}

.sponsors-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sponsors-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 60px;
    border-radius: 20px;
    padding: 2rem 0;
}

.sponsors-slider-track {
    display: flex;
    transition: transform 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
}

.sponsor-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 0;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(220, 20, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.sponsor-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(220, 20, 60, 0.2);
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.sponsor-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.sponsor-card:hover .sponsor-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.sponsors-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.2);
}

.sponsors-slider-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

.sponsors-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.sponsors-slider-btn-prev {
    left: 0;
}

.sponsors-slider-btn-next {
    right: 0;
}

.sponsors-slider-btn svg {
    width: 24px;
    height: 24px;
}

.sponsors-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.sponsors-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsors-slider-dot:hover {
    background: rgba(220, 20, 60, 0.5);
    transform: scale(1.2);
}

.sponsors-slider-dot.active {
    background: var(--primary-red);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.4);
}

/* SG Call Section */
.sg-call-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    overflow: hidden;
}

.sg-call-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sg-call-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sg-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(220, 20, 60, 0.3);
}

.sg-image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
}

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

.sg-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.05) contrast(1.1);
}

.sg-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-red);
    border-radius: 25px;
    opacity: 0;
    z-index: 2;
}

.sg-pulse-ring.ring-1 {
    animation: pulseRing 2s ease-out infinite;
}

.sg-pulse-ring.ring-2 {
    animation: pulseRing 2s ease-out infinite 0.7s;
}

.sg-pulse-ring.ring-3 {
    animation: pulseRing 2s ease-out infinite 1.4s;
}

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

.sg-call-right {
    position: relative;
}

.sg-call-content {
    position: relative;
    z-index: 1;
}

.sg-call-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
    }
}

.sg-call-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.sg-call-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sg-call-subtext {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.sg-call-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 
        0 10px 30px rgba(220, 20, 60, 0.4),
        0 5px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.sg-call-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.sg-call-button:hover::before {
    width: 400px;
    height: 400px;
}

.sg-call-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 20, 60, 0.5),
        0 8px 20px rgba(220, 20, 60, 0.4);
}

.sg-call-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.button-text {
    position: relative;
    z-index: 1;
}

.button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sg-call-button:hover .button-arrow {
    transform: translateX(5px);
}

.sg-call-button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* SG Popup */
.sg-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sg-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sg-popup {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(220, 20, 60, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.sg-popup-overlay.active .sg-popup {
    transform: scale(1) translateY(0);
}

.sg-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red), var(--primary-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

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

.sg-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.sg-popup-icon {
    font-size: 4rem;
    animation: sleepBounce 2s ease-in-out infinite;
}

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

.sg-popup-close {
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0;
}

.sg-popup-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.sg-popup-close svg {
    width: 20px;
    height: 20px;
}

.sg-popup-content {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

.sg-popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.sg-popup-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sg-popup-emoji {
    font-size: 2.5rem;
    animation: emojiFloat 2s ease-in-out infinite;
    letter-spacing: 0.5rem;
}

@keyframes emojiFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Applications Popup */
.applications-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.applications-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.applications-popup {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(220, 20, 60, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.applications-popup-overlay.active .applications-popup {
    transform: scale(1) translateY(0);
}

.applications-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red), var(--primary-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.applications-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.applications-popup-icon {
    font-size: 4rem;
    animation: warningPulse 2s ease-in-out infinite;
}

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

.applications-popup-close {
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 0;
}

.applications-popup-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.applications-popup-close svg {
    width: 20px;
    height: 20px;
}

.applications-popup-content {
    padding: 0 2rem 2.5rem;
    text-align: center;
}

.applications-popup-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.applications-popup-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.applications-popup-subtext {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.8;
}

/* Team Member Popup */
.team-member-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.team-member-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.team-member-popup {
    background: var(--white);
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(220, 20, 60, 0.2);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) rgba(220, 20, 60, 0.1);
}

.team-member-popup::-webkit-scrollbar {
    width: 8px;
}

.team-member-popup::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, 0.1);
    border-radius: 10px;
}

.team-member-popup::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.team-member-popup::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

.team-member-popup-overlay.active .team-member-popup {
    transform: scale(1) translateY(0);
}

.team-member-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--dark-red), var(--primary-red));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.team-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--text-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-popup-close:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.team-popup-close svg {
    width: 22px;
    height: 22px;
}

.team-popup-content {
    padding: 3rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-popup-image-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(220, 20, 60, 0.3);
}

.team-popup-image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
}

.team-popup-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.05) contrast(1.1);
}

.team-popup-info {
    text-align: center;
}

.team-popup-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.team-popup-role {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.team-popup-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.team-popup-bio {
    text-align: left;
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

.team-popup-bio p {
    margin-bottom: 1.2rem;
}

.team-popup-bio strong {
    color: var(--text-dark);
    font-weight: 700;
}

.team-popup-bio ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.team-popup-bio ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.team-popup-bio ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Team Member Popup Responsive */
@media (max-width: 768px) {
    .team-member-popup {
        max-width: 95%;
        border-radius: 20px;
    }
    
    .team-popup-content {
        padding: 2.5rem 1.5rem 2rem;
        gap: 2rem;
    }
    
    .team-popup-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .team-popup-name {
        font-size: 1.8rem;
    }
    
    .team-popup-role {
        font-size: 1rem;
    }
    
    .team-popup-bio {
        font-size: 0.95rem;
    }
    
    .team-popup-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* SG Call Section Responsive */
@media (max-width: 1024px) {
    .sg-call-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sg-call-left {
        order: 1;
    }
    
    .sg-call-right {
        order: 2;
    }
    
    .sg-image-container {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .sg-call-section {
        padding: 4rem 0;
    }
    
    .sg-call-wrapper {
        gap: 2.5rem;
    }
    
    .sg-image-container {
        max-width: 300px;
    }
    
    .sg-call-title {
        font-size: 2rem;
    }
    
    .sg-call-text {
        font-size: 1rem;
    }
    
    .sg-call-subtext {
        font-size: 0.9rem;
    }
    
    .sg-call-button {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sg-image-container {
        max-width: 250px;
    }
    
    .sg-call-title {
        font-size: 1.6rem;
    }
    
    .sg-call-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Section */
/* Contact Section */
.contact {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(220, 20, 60, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 5px 20px rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(220, 20, 60, 0.2));
}

.contact-info-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.contact-link:hover {
    color: var(--dark-red);
}

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

.social-link {
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 5px 15px rgba(220, 20, 60, 0.3));
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(220, 20, 60, 0.1);
}

.form-title {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(220, 20, 60, 0.03) 50px,
            rgba(220, 20, 60, 0.03) 52px
        );
    pointer-events: none;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: var(--primary-red);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-list li svg {
    color: var(--primary-red);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-contact-list li:hover svg {
    transform: scale(1.2);
}

.footer-contact-list li:hover {
    color: var(--white);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-developer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-developer strong {
    color: var(--primary-red);
    font-weight: 700;
}

.footer-admin {
    display: flex;
    align-items: center;
}

.admin-btn {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.admin-btn:hover {
    background: rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
    opacity: 1;
    transform: translateY(-1px);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
    }
    
    .footer-copyright,
    .footer-developer {
        font-size: 0.85rem;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--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-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(220, 20, 60, 0.05);
        margin-top: 0.5rem;
        border-radius: 0;
        padding: 0.5rem 0;
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-arrow {
        display: inline-block;
    }

    .hamburger {
        display: flex;
    }
    
    /* Hero section - mobile sizing (keep all effects) */
    .hero-logo {
        max-width: 150px;
    }

    .hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    /* Hide hero badge on mobile */
    .hero .hero-badge,
    .hero-badge,
    .hero-badge *,
    .badge-year {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hide hero stats on mobile */
    .hero .hero-stats,
    .hero-stats,
    .hero-stats *,
    .stat-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .countdown-section {
        padding: 2.5rem 0;
    }

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

    .countdown-icon {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
    }

    .countdown-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .countdown-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }

    .countdown-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-top: 0.8rem;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0.5rem 0;
        max-width: 100%;
    }

    .countdown-item {
        width: 120px;
        height: 120px;
    }

    .countdown-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .circle-bg,
    .circle-progress {
        stroke-width: 8;
    }

    .letter-section {
        padding: 3rem 0;
    }

    .letter-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 3.5rem !important;
        align-items: stretch !important;
    }

    .letter-left {
        transform: rotate(0deg) !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 2;
        position: relative !important;
        z-index: 1;
        margin: 1.5rem 0 0 0 !important;
        padding: 0 !important;
    }

    .letter-left:hover {
        transform: translateY(-10px) !important;
    }

    .letter-envelope {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-wrapper {
        transform: rotate(0deg) perspective(1000px) rotateY(0deg) !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-left:hover .letter-wrapper {
        transform: translateY(-8px) !important;
    }

    .letter-paper {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-right {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
        position: relative !important;
        z-index: 1;
        transform: rotate(0deg) !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 0 !important;
    }

    .letter-right:hover {
        transform: translateY(-10px) !important;
    }

    .letter-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .envelope-flap {
        height: 50px;
        top: -20px;
        position: absolute !important;
    }

    .letter-envelope {
        padding-top: 30px !important;
    }

    .letter-paper {
        padding: 2rem 2.5rem 2rem 3.5rem;
        max-height: 600px;
    }

    .letter-paper::before {
        left: 45px;
    }

    .letter-watermark {
        font-size: 4rem;
    }

    .letter-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }

    .letter-title {
        font-size: 1.3rem;
    }

    .letter-date {
        font-size: 0.75rem;
    }

    .letter-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .letter-greeting,
    .letter-closing {
        font-size: 0.9rem;
    }

    .letter-signature {
        font-size: 0.85rem;
    }

    .letter-name {
        font-size: 0.9rem;
    }

    .letter-seal {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .letter-title {
        font-size: 1.3rem;
    }

    .letter-title::before,
    .letter-title::after {
        display: none;
    }

    .letter-content {
        font-size: 0.95rem;
    }

    .letter-image-wrapper {
        max-width: 100%;
        max-height: 500px;
    }

    .image-frame {
        padding: 15px;
    }

    .image-frame:hover {
        transform: translateY(-8px) scale(1.03) rotate(0deg);
    }

    .frame-decoration {
        display: none;
    }

    .committees {
        padding: 4rem 0;
    }

    .corner-decoration {
        width: 200px;
        height: 200px;
    }

    .corner-shape {
        filter: blur(30px);
    }

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

    .committee-icon {
        font-size: 3rem;
    }

    .committee-header h3 {
        font-size: 1.2rem;
    }

    .decorative-section {
        padding: 5rem 0;
    }

    .decorative-content {
        height: 300px;
    }

    .decorative-logo {
        width: 90px;
    }

    .decorative-logo-wrapper::before {
        width: 120px;
        height: 120px;
    }

    .decorative-title {
        font-size: 1.8rem;
    }

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

    .decorative-shape {
        width: 60px !important;
        height: 60px !important;
    }

    .about {
        padding: 5rem 0;
    }

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

    .about-text {
        padding: 2.5rem;
    }

    .about-features {
        flex-direction: row;
        justify-content: space-around;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .feature-card {
        padding: 2.5rem 2rem;
        flex: 1;
        min-width: 200px;
    }

    .feature-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-date {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hero section - small mobile sizing (keep all effects) */
    .hero-container {
        padding: 0 20px;
    }

    .hero-logo {
        max-width: 120px;
    }

    .hero-title {
        font-size: 4rem;
        letter-spacing: -1px;
    }

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

    .btn-hero {
        padding: 16px 40px;
        font-size: 0.95rem;
    }
    
    /* Hide hero badge on mobile */
    .hero .hero-badge,
    .hero-badge,
    .hero-badge *,
    .badge-year {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Hero stats already hidden in 768px media query */

    .countdown-section {
        padding: 2rem 0;
    }

    .countdown-header {
        margin-bottom: 1.2rem;
    }

    .countdown-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .countdown-title {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }

    .countdown-title::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }

    .countdown-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-top: 0.6rem;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem 0;
    }

    .countdown-item {
        width: 100px;
        height: 100px;
    }

    .countdown-item:hover {
        transform: scale(1.05) rotate(3deg);
    }

    .countdown-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    .circle-bg,
    .circle-progress {
        stroke-width: 6;
    }

    /* Hide hero stats on mobile */
    .hero .hero-stats,
    .hero-stats,
    .hero-stats *,
    .stat-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .stat-icon {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .letter-section {
        padding: 2.5rem 0;
    }

    .letter-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 4rem !important;
        align-items: stretch !important;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-form .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Notes Section Mobile */
    .notes-section {
        padding: 2rem 0;
    }
    
    .notes-container {
        padding: 0 0.5rem;
    }
    
    .notes-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .notes-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .notes-title::after {
        width: 50px;
        height: 2px;
    }
    
    .notes-board {
        min-height: 700px;
        padding: 1.5rem 0.5rem;
        position: relative;
    }
    
    .note {
        width: 120px;
        min-height: 110px;
        padding: 0.7rem;
        font-size: 0.7rem;
        position: absolute !important;
    }
    
    /* Mobilde notları daha düzenli yerleştir */
    .note-1 {
        top: 3% !important;
        left: 3% !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-2 {
        top: 3% !important;
        right: 3% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-3 {
        top: 30% !important;
        left: 3% !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-4 {
        top: 15% !important;
        left: 50% !important;
        transform: translateX(-50%) rotate(var(--rotation)) !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .note-5 {
        bottom: 20% !important;
        right: 3% !important;
        left: auto !important;
        top: auto !important;
    }
    
    .note-6 {
        top: 45% !important;
        right: 3% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-7 {
        bottom: 5% !important;
        left: 50% !important;
        transform: translateX(-50%) rotate(var(--rotation)) !important;
        right: auto !important;
        top: auto !important;
    }
    
    .note-8 {
        top: 30% !important;
        right: 3% !important;
        left: auto !important;
        bottom: auto !important;
    }
    
    .note-content {
        font-size: 0.65rem;
        margin-top: 15px;
        line-height: 1.3;
    }
    
    .add-note-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    /* Committees Mobile */
    .committees {
        padding: 2.5rem 0;
    }
    
    .committees-header {
        margin-bottom: 2.5rem;
    }
    
    .committees-grid {
        gap: 1.2rem;
    }
    
    .committee-card {
        padding-top: 150px;
    }
    
    .committee-image {
        height: 150px;
    }
    
    .committee-icon {
        font-size: 3.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .committee-header {
        padding: 0 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .committee-header h3 {
        font-size: 1.1rem;
    }
    
    .committee-level {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
    
    .committee-description {
        padding: 0 1.5rem;
        font-size: 0.85rem;
    }
    
    .committee-stats {
        padding: 1.5rem 1.5rem;
    }
    
    .committee-footer {
        padding: 1.2rem 1.5rem;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .about-title-container {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .about-title-number {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
        text-align: center;
    }
    
    .about-title-accent {
        width: 50px;
        height: 3px;
        margin: 0 auto;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-center-piece {
        gap: 2rem;
        width: 100%;
    }
    
    .logo-section-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        justify-items: center;
        width: 100%;
        padding: 0 1rem;
    }
    
    .center-logo-wrapper {
        width: 220px !important;
        height: 220px !important;
        margin: 0 auto !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-orbit-inner {
        width: 140px !important;
        height: 140px !important;
    }
    
    .logo-orbit-outer {
        width: 220px !important;
        height: 220px !important;
    }
    
    .ring-1 {
        width: 100px !important;
        height: 100px !important;
    }
    
    .ring-2 {
        width: 120px !important;
        height: 120px !important;
    }
    
    .ring-3 {
        width: 140px !important;
        height: 140px !important;
    }
    
    .logo-glow-effect {
        width: 180px !important;
        height: 180px !important;
    }
    
    .center-logo {
        width: 100px !important;
    }
    
    .logo-orbiting-particles {
        width: 180px !important;
        height: 180px !important;
    }
    
    .orbiting-particle {
        animation: particleOrbitMobileSmall 12s linear infinite;
    }
    
    @keyframes particleOrbitMobileSmall {
        0% {
            transform: rotate(0deg) translateX(90px) rotate(0deg);
        }
        100% {
            transform: rotate(360deg) translateX(90px) rotate(-360deg);
        }
    }
    
    .logo-side-decoration {
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }
    
    .logo-side-left,
    .logo-side-right {
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
    }
    
    .logo-side-left .side-deco-item,
    .logo-side-right .side-deco-item {
        flex-direction: column !important;
        gap: 0.5rem;
    }
    
    .side-deco-item {
        margin: 0;
    }
    
    .side-deco-item:hover {
        transform: none !important;
    }
    
    .side-deco-item:hover .deco-text {
        transform: translateY(-2px) scale(1.03) !important;
    }
    
    .deco-text {
        font-size: 0.7rem !important;
        padding: 0.5rem 0.7rem !important;
        white-space: nowrap;
        letter-spacing: 0.5px !important;
    }
    
    .deco-line {
        width: 30px !important;
        height: 2px !important;
        transform: rotate(0deg) !important;
    }
    
    .side-deco-item:hover .deco-line {
        width: 50px !important;
    }
    
    .about-text-panels {
        grid-template-columns: 1fr !important;
        gap: 1.2rem;
        padding: 0 0.5rem;
        width: 100%;
    }
    
    .side-text-panel {
        padding: 1.2rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .panel-icon {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .panel-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .panel-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .about-more-button-wrapper {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .about-more-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .morph-blob-1,
    .morph-blob-2,
    .morph-blob-3 {
        display: none;
    }
    
    /* Schedule Mobile */
    .schedule {
        padding: 1.5rem 0 !important;
    }
    
    .schedule-mystery-wrapper {
        margin: 0.8rem auto 0;
        max-height: 350px;
        overflow: hidden;
        padding: 1rem !important;
    }
    
    .schedule-timeline {
        max-height: 300px;
        overflow: hidden;
    }
    
    .timeline-item {
        margin-bottom: 0.6rem !important;
        gap: 0.4rem;
    }
    
    .timeline-date {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    .timeline-content {
        padding: 0.7rem 0.8rem !important;
    }
    
    .timeline-content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .timeline-content p {
        font-size: 0.75rem !important;
        margin-bottom: 0.15rem !important;
    }
    
    .timeline-detail {
        font-size: 0.7rem !important;
        margin-top: 0.2rem !important;
    }
    
    .mystery-overlay {
        padding: 1rem 0.8rem;
        min-width: 90%;
        max-width: 250px;
    }
    
    .mystery-icon {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    
    .mystery-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .mystery-text {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }
    
    .mystery-subtext {
        font-size: 0.75rem;
    }
    
    /* Navbar Mobile */
    .nav-brand h1 {
        font-size: 1.4rem;
    }
    
    .hamburger {
        width: 30px;
        height: 30px;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .letter-left {
        transform: rotate(0deg) !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 2;
        position: relative !important;
        z-index: 1;
        margin: 2rem 0 0 0 !important;
        padding: 0 !important;
    }

    .letter-left:hover {
        transform: translateY(-5px) !important;
    }

    .letter-envelope {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-wrapper {
        transform: rotate(0deg) perspective(1000px) rotateY(0deg) !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-left:hover .letter-wrapper {
        transform: translateY(-5px) !important;
    }

    .letter-paper {
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .letter-right {
        width: 100% !important;
        max-width: 100% !important;
        order: 1;
        position: relative !important;
        z-index: 1;
        transform: rotate(0deg) !important;
        margin: 0 0 2rem 0 !important;
        padding: 0 !important;
    }

    .letter-right:hover {
        transform: translateY(-5px) !important;
    }

    .letter-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .envelope-flap {
        height: 40px;
        top: -15px;
        position: absolute !important;
    }

    .letter-envelope {
        padding-top: 25px !important;
    }

    .letter-paper {
        padding: 1.8rem 2rem 1.8rem 3rem;
        max-height: 500px;
    }

    .letter-paper::before {
        left: 35px;
    }

    .letter-watermark {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .letter-header {
        margin-bottom: 0.6rem;
        padding-bottom: 0.5rem;
    }

    .letter-logo-area {
        margin-bottom: 0.6rem;
    }

    .letter-logo-area img {
        max-width: 60px;
    }

    .letter-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .letter-date {
        font-size: 0.7rem;
    }

    .letter-content {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .letter-greeting,
    .letter-closing {
        font-size: 0.85rem;
    }

    .signature-area {
        margin-top: 1rem;
    }

    .letter-signature {
        font-size: 0.8rem;
    }

    .letter-name {
        font-size: 0.85rem;
    }

    .letter-image-wrapper {
        max-height: 400px;
    }

    .image-frame {
        padding: 12px;
    }

    .image-frame:hover {
        transform: translateY(-5px) scale(1.02) rotate(0deg);
    }

    .frame-decoration {
        display: none;
    }

    .letter-seal {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .letter-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .letter-content {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .letter-content p {
        text-align: left;
        margin-bottom: 1.2rem;
        text-indent: 1.5rem;
    }

    .letter-closing {
        margin-top: 2.5rem;
    }

    .signature-line {
        width: 150px;
    }

    .letter-signature {
        font-size: 1.1rem;
    }

    .committees {
        padding: 3rem 0;
    }

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

    .committee-icon {
        font-size: 2.5rem;
    }

    .committee-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .committee-level {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .committee-description {
        padding: 0 1.5rem;
    }

    .committee-stats {
        padding: 1.2rem 1.5rem;
    }

    .committee-footer {
        padding: 1.2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .decorative-logo {
        width: 70px;
    }

    .decorative-logo-wrapper::before {
        width: 100px;
        height: 100px;
    }

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

/* ============================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ============================================ */

@media (max-width: 768px) {
    /* Hero section - keep all animations and effects */
    .hero,
    .hero *,
    .hero *::before,
    .hero *::after {
        animation-duration: revert !important;
        animation-iteration-count: revert !important;
        transition-duration: revert !important;
    }
    
    /* Optimize animations on mobile - reduce duration and iterations (except hero) */
    body > *:not(.hero),
    body > *:not(.hero) *:not(.hero-particle):not(.hero-image):not(.hero-gradient):not(.hero-particles),
    body > *:not(.hero) *::before:not(.hero *::before),
    body > *:not(.hero) *::after:not(.hero *::after) {
        animation-duration: 0.3s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
        scroll-behavior: auto !important;
    }
    
    /* Explicitly exclude hero children from optimization */
    .hero *,
    .hero *::before,
    .hero *::after {
        animation-duration: revert !important;
        animation-iteration-count: revert !important;
        transition-duration: revert !important;
        filter: revert !important;
        transform: revert !important;
        opacity: revert !important;
        display: revert !important;
        visibility: revert !important;
    }
    
    /* Disable infinite animations except hero */
    .bg-particle,
    .orbiting-particle,
    .decorative-logo,
    .morph-blob {
        animation-iteration-count: 1 !important;
        animation-fill-mode: forwards !important;
    }
    
    /* Hero section - keep backdrop-filter */
    .hero,
    .hero * {
        backdrop-filter: revert !important;
        -webkit-backdrop-filter: revert !important;
    }
    
    /* Disable backdrop-filter (very expensive) except hero */
    body > *:not(.hero),
    body > *:not(.hero) *:not(.hero-particle):not(.hero-image):not(.hero-gradient):not(.hero-particles) {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Keep backdrop-filter for hero */
    .hero,
    .hero * {
        backdrop-filter: revert !important;
        -webkit-backdrop-filter: revert !important;
    }
    
    /* Hero section - keep box-shadows */
    .hero-particle {
        box-shadow: revert !important;
    }
    
    /* Reduce box-shadows for other elements */
    .bg-particle,
    .decorative-element,
    .particle {
        box-shadow: none !important;
    }
    
    /* Hero section - keep all animations and particles */
    .hero .hero-particle {
        animation: heroParticleFloat 20s linear infinite !important;
        opacity: 1 !important;
        box-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(220, 20, 60, 0.6),
            0 0 30px rgba(220, 20, 60, 0.4) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep all image effects */
    .hero .hero-image {
        filter: blur(3px) brightness(0.6) !important;
        animation: slowZoom 25s ease-in-out infinite alternate !important;
        transform: scale(1.1) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep gradient */
    .hero .hero-gradient {
        background: radial-gradient(circle at center, rgba(220, 20, 60, 0.4) 0%, rgba(178, 34, 34, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep particles container */
    .hero .hero-particles {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
    }
    
    /* Disable expensive hover effects */
    .team-member-card:hover,
    .sponsor-card:hover,
    .committee-card:hover,
    .note:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Hero section - keep will-change */
    .hero,
    .hero * {
        will-change: revert !important;
    }
    
    /* Disable will-change (causes repaints) except hero */
    body > *:not(.hero),
    body > *:not(.hero) *:not(.hero-particle):not(.hero-image):not(.hero-gradient):not(.hero-particles) {
        will-change: auto !important;
    }
    
    /* Keep will-change for hero */
    .hero,
    .hero * {
        will-change: revert !important;
    }
    
    /* Hero section - keep all effects (except badge sizing on mobile) */
    .hero-logo,
    .hero-title,
    .hero-subtitle,
    .badge-decoration,
    .hero-gradient,
    .hero-image,
    .btn-hero {
        transform: revert !important;
        animation: revert !important;
        filter: revert !important;
        text-shadow: revert !important;
        box-shadow: revert !important;
    }
    
    /* Badge year - keep animations but allow mobile sizing */
    .badge-year {
        animation: revert !important;
        text-shadow: revert !important;
    }
    
    /* Hero badge - keep animations but allow mobile sizing */
    .hero-badge {
        animation: revert !important;
        box-shadow: revert !important;
    }
    
    /* Optimize other logos */
    .center-logo,
    .decorative-logo {
        transform: none !important;
        animation: none !important;
    }
    
    /* Disable glow effects except hero */
    .logo-glow-effect,
    .sg-image-glow,
    .team-popup-image-glow {
        display: none !important;
    }
    
    /* Disable other floating animations */
    .decorative-logo-wrapper,
    .orbiting-particle {
        animation: none !important;
    }
    
    /* Hide hero stats on mobile - performance optimization section */
    .hero .hero-stats,
    .hero-stats,
    .hero-stats *,
    .stat-item {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    /* Simplify shadows except hero */
    .team-member-card,
    .sponsor-card,
    .committee-card {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Disable pulse animations except hero */
    .sg-pulse-ring {
        display: none !important;
    }
    
    /* Disable morph backgrounds */
    .morph-blob {
        animation: none !important;
    }
    
    /* Simplify decorative shapes */
    .decorative-shape,
    .bg-shape {
        animation: none !important;
        opacity: 0.1 !important;
    }
}

@media (max-width: 480px) {
    /* Hero section - keep all animations and effects */
    .hero,
    .hero *,
    .hero *::before,
    .hero *::after {
        animation-duration: revert !important;
        animation-iteration-count: revert !important;
        transition-duration: revert !important;
        filter: revert !important;
        transform: revert !important;
        opacity: revert !important;
        display: revert !important;
        visibility: revert !important;
        backdrop-filter: revert !important;
        -webkit-backdrop-filter: revert !important;
        will-change: revert !important;
    }
    
    /* Hero section - keep all animations and particles */
    .hero .hero-particle {
        animation: heroParticleFloat 20s linear infinite !important;
        opacity: 1 !important;
        box-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(220, 20, 60, 0.6),
            0 0 30px rgba(220, 20, 60, 0.4) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep all image effects */
    .hero .hero-image {
        filter: blur(3px) brightness(0.6) !important;
        animation: slowZoom 25s ease-in-out infinite alternate !important;
        transform: scale(1.1) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep gradient */
    .hero .hero-gradient {
        background: radial-gradient(circle at center, rgba(220, 20, 60, 0.4) 0%, rgba(178, 34, 34, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    /* Hero section - keep particles container */
    .hero .hero-particles {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
    }
    
    /* Even more aggressive optimizations for small devices (except hero) */
    
    /* Keep all hero particles */
    /* .hero-particle kept */
    
    .bg-particle:nth-child(n+5) {
        display: none !important;
    }
    
    /* Simplify backgrounds */
    .about-morph-bg,
    .about-particles-bg,
    .team-slider-bg-shapes {
        display: none !important;
    }
    
    /* Reduce opacity of decorative elements */
    .decorative-element,
    .particle {
        opacity: 0.2 !important;
    }
    
    /* Disable complex transforms except hero */
    .letter-left,
    .letter-right {
        transform: none !important;
    }
    
    /* Simplify card hovers */
    .team-member-card:active,
    .sponsor-card:active,
    .committee-card:active {
        transform: scale(0.98) !important;
    }
}

