@font-face {
    font-family: 'font';
    src: url('/assets/fonts/ubuntu.ttf');
    font-weight: 100;
    font-style: normal;
}

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

section:not(.container_section) {
    width: 100%;
    min-height: 50vh;
}
.container_section {
    position: absolute;
    overflow: visible;
    width: 100%;
    min-height: 70vh;
}

.luna {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    vertical-align: middle;
    height: 5%;
    width: 5%;
    filter: brightness(0) invert(1);
}

.atlas {
    padding-right: 1rem;
    height: 90%;
    width: auto;
    filter: brightness(0) invert(1);
}

body {
    font-family: font, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a, black);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
}

/* ==========================================================================
   --- HERO SECTION ---
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bg-video {
    -o-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 125%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
@media (max-aspect-ratio: 9/16) {
    #bg-video {
        width: 200%;
        height: 250%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    margin-top: 80px;
}

.hero-logo {
    opacity: 1;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: all 1s ease;
}

.hero-logo.loaded {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-content p.loaded {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.cta-button.loaded {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 1s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 5;
}

.scroll-indicator i {
    font-size: 2rem;
}

/* ==========================================================================
   --- STRUCTURĂ SECȚIUNI ȘI PARTICULE ---
   ========================================================================== */

.content-section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    backdrop-filter: blur(2px);
    color: white;
    margin: 0;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

#particles-resources {
    position: absolute;
    width: 100%;
    height: 185%;
    top: 0;
    left: 0;
    z-index: 0;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
#particles-awards {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.section-dark .content-wrapper {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   --- TITLURI ȘI PARAGRAFE ---
   ========================================================================== */

h2:not(.modalSponsorName) {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(45deg, white, whitesmoke);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark h2 {
    color: white;
    background: linear-gradient(45deg, #00d4ff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: particleGlow 1s ease-in-out infinite alternate;
}

@keyframes particleGlow {
    0% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        filter: brightness(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(102, 126, 234, 0.8), 0 0 40px rgba(0, 212, 255, 0.6);
        filter: brightness(1.2);
    }
}

p {
    font-size: 1.2rem;
    color: whitesmoke;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   --- SECȚIUNEA ABOUT ECHIPĂ ---
   ========================================================================== */

#about {
    padding: 8rem 2rem 6rem 2rem;
    position: relative;
    z-index: 2;
    background: transparent;
}

#particles-about {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#about > *:not(#particles-about) {
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.about-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left !important;
    background: linear-gradient(45deg, #00d4ff, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: particleGlow 2s ease-in-out infinite alternate;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.about-text strong {
    color: #00d4ff;
    font-weight: bold;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 480px;
    height: 380px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 212, 255, 0.05);
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.15);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1);
}

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

.stat-card h4 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    letter-spacing: -1px;
}

.stat-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-align: center;
}

/* ==========================================================================
   --- CHOICE CARDS (PROJECTS / RESOURCES) ---
   ========================================================================== */

.choice-grid {
    backdrop-filter: blur(2px);
    justify-items: center;
    justify-content: center;
    padding-left: 20%;
    padding-right: 20%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.choice-card {
    position: relative;
    border-radius: 20px;
    padding-left: 2rem;
    padding-right: 2rem;
    color: white;
    text-align: left;
    height: 50vh;
    width: 20vw;
    max-width: 400px;
    max-height: 600px;
    margin-bottom: 0rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choice-card-modif * {
    position: relative;
    z-index: 1;
}

.choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    z-index: 0;
}

.choice-card * {
    position: relative;
    z-index: 1;
}

.choice-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 1;
}

.choice-card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    z-index: 2;
    pointer-events: none;
}

.choice-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.5s ease;
    z-index: 1;
}

.choice-card:hover::before {
    filter: grayscale(0%);
}
.choice-card:hover::after {
    background: rgba(0, 0, 0, 0.2);
}
.choice-card p {
    font-size: 1.1rem;
    color: #f0f0f0;
}

.choice-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

/* ==========================================================================
   --- FEATURE CARDS & AWARDS (OPTIONAL / GENERAL) ---
   ========================================================================== */

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.section-dark .feature-card h3 {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.feature-card p {
    color: dimgray;
    font-size: 1rem;
    text-align: left;
}

.section-dark .feature-card p {
    color: rgba(255, 255, 255, 0.9);
}

.awards-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.awards-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00d4ff, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.awards-grid {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-card, .award-card-modif {
    position: relative;
    border-radius: 20px;
    padding-left: 2rem;
    padding-right: 2rem;
    color: white;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card:normalize, .award-card:nth-child(odd) {
    margin-top: 3rem;
    height: 350px;
}
.award-card:nth-child(even) {
    height: 450px;
    margin-bottom: 0rem;
}

.award-card-modif:nth-child(odd) {
    margin-top: 0rem;
    height: 450px;
}
.award-card-modif:nth-child(even) {
    height: 350px;
}

.award-card::before, .award-card-modif::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.award-card *, .award-card-modif * {
    position: relative;
    z-index: 1;
}

.award-card:hover, .award-card-modif:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.award-card h3, .award-card-modif h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.award-card p, .award-card-modif p {
    font-size: 1.1rem;
    color: #f0f0f0;
}

/* ==========================================================================
   --- VOLUM ȘI UTILITIES ---
   ========================================================================== */

.volume-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.volume-button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.volume-icon {
    width: 24px;
    height: 24px;
}

#artifact {
    position: fixed;
    bottom: 1%;
    left: 80%;
    width: 100px;
    height: 100px;
    z-index: 9999;
    will-change: transform;
}

/* ==========================================================================
   --- CAROUSEL SPONSORI ---
   ========================================================================== */

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

.carousel-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    font-weight: 300;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    background: rgba(0,0,0,0);
    padding: 30px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc((200px + 40px) * 18);
}

.carousel-track-smaller {
    display: flex;
    animation: scroll 20s linear infinite;
    width: calc((80px + 120px) * 20);
}
.sponsor-slide {
    min-width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    transition: transform 0.3s ease;
}
.sponsor-slide-smaller {
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 60px;
    transition: transform 0.3s ease;
}

.sponsor-slide:hover, .sponsor-slide-smaller:hover {
    transform: scale(1.1);
}

.sponsor-logo:hover, .sponsor-logo-smaller:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.carousel-track:has(.sponsor-logo:hover) {
    animation-play-state: paused;
}
.carousel-track-smaller:has(.sponsor-logo-smaller:hover) {
    animation-play-state: paused;
}

.sponsor-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}
.sponsor-logo-smaller {
    max-width: 150px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

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

.carousel-wrapper::before, .carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.carousel-wrapper::before { left: 0; }
.carousel-wrapper::after { right: 0; }

/* ==========================================================================
   --- SPONSOR MODAL ---
   ========================================================================== */

.sponsor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sponsor-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sponsor-modal {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 900px;
    border-radius: 5px;
    width: 90%;
    max-height: 80vh;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.1s ease;
    overflow: hidden;
}

.sponsor-modal-overlay.active .sponsor-modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
}

.sponsor-modal-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem;
    min-height: 400px;
    align-items: center;
}

.sponsor-modal-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 15px;
}

.modal-sponsor-image {
    max-width: 120%;
    max-height: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

.sponsor-modal-right {
    color: white;
}

.sponsor-modal-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsor-modal-bio p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.sponsor-website-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.sponsor-website-link:hover {
    transform: translateX(3px);
}

/* ==========================================================================
   --- SMOOTH SCROLL (LENIS) ȘI FOOTER ---
   ========================================================================== */

html {
    scroll-behavior: auto !important;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.footer {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-content {
    text-align: left;
    max-width: 1400px;
    max-height: 200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    --neon-blue: #00d4ff;
    --neon-pink: #ff0080;
    --glass-bg: rgba(255, 200, 180, 0.1);
    --glass-border: rgba(255, 255, 200, 0.1);
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.social-link.github:hover {
    background: #333;
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.4);
}

.social-link.youtube:hover {
    background: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 10px 30px rgba(214, 36, 159, 0.5);
}

.social-link.tiktok:hover {
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.footer-text {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-copyright {
    color: whitesmoke;
    opacity: 0.6;
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-30%) translateY(0); }
    40% { transform: translateX(-30%) translateY(-8px); }
    60% { transform: translateX(-30%) translateY(-5px); }
}

/* ==========================================================================
   --- RESPONSIVITATE / MEDIA QUERIES ---
   ========================================================================== */

@media (max-width: 1500px) {
    .choice-grid {
        padding-left: 10%;
        padding-right: 10%;
    }
    .choice-card {
        height: 50vh;
        width: 20vw;
    }
}

@media (max-width: 1100px) {
    .choice-grid {
        padding-left: 5%;
        padding-right: 5%;
        gap: 1rem;
    }
    .choice-card {
        height: 40vh;
        width: 25vw;
    }
}

@media (max-width: 900px) {
    #about {
        padding: 5rem 1.5rem 4rem 1.5rem;
    }
    .about-grid {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    .about-text {
        text-align: center;
    }
    .about-text h2 {
        text-align: center !important;
        font-size: 2.4rem;
    }
    .about-text p {
        text-align: center;
    }
    .about-image {
        max-width: 100%;
        height: 300px;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-card {
        padding: 2rem 1rem;
    }
    .stat-card h4 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 1rem 0;
    }
    .choice-grid {
        padding-left: 5%;
        padding-right: 5%;
        gap: 1rem;
    }
    .choice-card {
        height: 50vh;
        width: 100vw;
    }
    .hero-logo {
        max-width: 350px;
    }
    h2 {
        font-size: 2rem;
    }
    .volume-control {
        bottom: 15px;
        right: 15px;
    }
    .volume-button {
        width: 45px;
        height: 45px;
    }
    .carousel-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .carousel-track {
        animation-duration: 1000s;
    }
    .sponsor-slide {
        min-width: 150px;
        margin: 0 10px;
    }
    .sponsor-slide-smaller {
        min-width: 50px;
        margin: 0 10px;
    }
    .sponsor-logo {
        max-width: 150px;
        max-height: 150px;
    }
    .sponsor-modal {
        width: 95%;
        max-height: 90vh;
    }
    .sponsor-modal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    .sponsor-modal-right h2 {
        font-size: 2rem;
    }
    .sponsor-modal-bio p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 70px;
    }
    .hero-logo {
        max-width: 280px;
    }
}