/* =============================================
   DROWO 2026 — NEON SCRIPT & GLASSMORPHISM
   ============================================= */

/* --- DESIGN TOKENS --- */
:root {
    --bg-black: #020205;
    --neon-pink: #ff007f;
    --neon-blue: #00e5ff;
    --neon-purple: #9d00ff;
    --neon-gold: #ffcc00;
    --glass-bg: rgba(10, 10, 20, 0.72);
    --glass-bg-light: rgba(20, 20, 40, 0.55);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-hover: rgba(255, 255, 255, 0.25);
    --chrome-gradient: linear-gradient(135deg, #00e5ff, #ff007f, #9d00ff, #ffcc00);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 500px) {
    body {
        padding: 0px 3%;
    }
}

/* --- RESET & BASE --- */
html {
    scroll-behavior: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-black);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(157, 0, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    margin: 0;
    padding-top: 100px;
    color: #e0e6ed;
    overflow-x: hidden;
    min-height: 100vh;
    text-align: center;
    padding: 0px 5%;
}

/* =============================================
   TYPOGRAPHY — NEONCITY SCRIPT TITLES
   ============================================= */
h1,
.neon-title,
.cursive-neon {
    font-family: 'NEONCITY Script', 'Orbitron', sans-serif;
    font-weight: 800;
    text-transform: none;
    text-align: center;
    letter-spacing: 3px;
}

h3,
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
}

h3,
.card-title-location {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    letter-spacing: 2px;
}

p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    text-align: center;
}

.neon-text {
    font-size: 120px;
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-purple),
        0 0 60px var(--neon-purple);
    margin-bottom: 25px;
    line-height: 1.1;
    text-align: left;
    letter-spacing: 4px;
}

.edition {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
    margin-top: 20px;
}

.hero-date-place {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #e0e6ed;
    letter-spacing: 2px;
    margin-top: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.neon-title {
    font-size: 120px;
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-purple),
        0 0 60px var(--neon-purple);
    margin-bottom: 25px;
    letter-spacing: 4px;
}

.gallery-title {
    font-size: 180px;
}

/* =============================================
   FLOATING NAVBAR
   ============================================= */
.header-fix {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    z-index: 1001;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.03);
}

.container-header {
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

.nav-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.logo-link {
    display: flex;
    align-items: center;
    z-index: 1006;
}

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.nav-container a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-container a.nav-btn {
    color: #fff;
    text-shadow:
        0 0 8px var(--neon-pink),
        0 0 15px var(--neon-pink),
        0 0 25px var(--neon-purple);
}

.nav-container a.nav-btn:hover {
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 35px var(--neon-purple),
        0 0 50px var(--neon-purple);
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

/* =============================================
   CONTENT WRAPPER
   ============================================= */
.content-wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 20px;
}

/* =============================================
   SECTION — GLASS BASE
   ============================================= */
.section {
    padding: 40px 30px;
    margin-bottom: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.section p {
    font-size: 20px;
    line-height: 1.8;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--chrome-gradient);
    opacity: 0.7;
}

/* =============================================
   GLASS POD — REUSABLE COMPONENT
   ============================================= */
.glass-pod {
    background: var(--glass-bg-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-pod:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 20px;
    gap: 40px;
    margin-bottom: 40px;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

#gallery-hero {

    min-height: 50vh;
    padding-top: 30px;
    padding-bottom: 100px;
    margin-bottom: 0px;
}

.hero-full-bleed {
    padding-left: max(20px, calc((100vw - 1550px) / 2 + 20px));
    padding-right: 0;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: visible;
}

.hero-full-bleed .hero-content {
    flex: 1;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-full-bleed .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-desc {
    font-size: 20px;
    color: #b0bac5;
    margin-bottom: 45px;
    max-width: 620px;
    line-height: 1.7;
}

.hero-visual {
    flex-shrink: 0;
}

.drone-neon-sketch {
    width: 100%;
    height: 100%;
}

.neon-img,
.glass-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-img-custom {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    border: none;
    box-shadow: none;
    background: transparent;
    transform: scale(1.15) translateX(5%);
    transition: var(--transition);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   BUTTONS — GLASS EFFECTS
   ============================================= */
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.9), rgba(0, 180, 220, 0.9));
    color: #000;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow:
        0 0 25px rgba(0, 229, 255, 0.35),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 40px rgba(0, 229, 255, 0.5),
        0 0 80px rgba(0, 229, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: rgba(255, 0, 127, 0.08);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 15px rgba(255, 0, 127, 0.15),
        inset 0 0 10px rgba(255, 0, 127, 0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.6s;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: rgba(255, 0, 127, 0.18);
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 30px rgba(255, 0, 127, 0.35),
        0 0 60px rgba(255, 0, 127, 0.15),
        inset 0 0 15px rgba(255, 0, 127, 0.1);
}

/* "Descoperă mai multe momente" — FEATURED glass button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(255, 0, 127, 0.15), rgba(0, 229, 255, 0.15));
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 20px rgba(157, 0, 255, 0.2),
        0 0 40px rgba(255, 0, 127, 0.1),
        inset 0 0 25px rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.6s;
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-glass:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 35px rgba(157, 0, 255, 0.4),
        0 0 70px rgba(255, 0, 127, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* =============================================
   INFO STRIP (DATE & LOCATION)
   ============================================= */
.info-strip {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    min-width: 240px;
}

.info-item i {
    font-size: 28px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-family: 'Hastron FREE', 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--neon-pink);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.info-text .value {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #e0e6ed;
    font-weight: 500;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 0 0 calc(50% - 10px);
    text-align: left;
}

.about-image {
    flex: 0 0 calc(50% - 10px);
    max-width: 100%;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    flex: 1 1 250px;
    max-width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-action {
    text-align: center;
    margin-top: 30px;
}

/* =============================================
   TRAINING CARDS
   ============================================= */
.training-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 250px;
    max-width: 100%;
}

.card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.04);
}

.card-body {
    padding: 20px;
    flex: 1;
}

.card-title {
    font-size: 25px;
    color: #fff;
    margin: 0 0 12px 0;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}


.card-title-location {
    font-size: 25px;
    color: #fff;
    margin: 0 0 12px 0;
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.card-body p {
    font-size: 18px;
    color: #b0bac5;
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   FAQ — GLASS PODS ACCORDION
   ============================================= */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-pod {
    padding: 0;
    overflow: hidden;
}

.faq-pod details {
    width: 100%;
}

.faq-pod summary {
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.faq-pod summary::-webkit-details-marker {
    display: none;
}

.faq-pod summary::after {
    content: '+';
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--neon-blue);
    font-weight: 700;
    transition: var(--transition);
    text-shadow: 0 0 8px var(--neon-blue);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-pod details[open] summary::after {
    content: '−';
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
    transform: rotate(180deg);
}

.faq-pod details[open] summary {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 229, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-content {
    padding: 20px 24px 20px 24px;
    font-size: 18px;
    color: #b0bac5;
    line-height: 1.7;
    text-align: left;
    animation: faqReveal 0.35s ease-out;
}

@keyframes faqReveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-pod summary:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* =============================================
   LOCATION CARDS & IFRAMES
   ============================================= */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-card {
    flex: 1 1 calc(50% - 15px);
    min-width: calc(50% - 15px);
    padding: 24px;
}

.location-card h3 {
    margin-top: 0;
}

.location-card p {
    color: #b0bac5;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.iframe-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.iframe-wrapper iframe {
    display: block;
    border: 0;
    width: 100%;
}

.iframe-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    pointer-events: none;
    box-shadow: inset 0 0 30px rgba(0, 229, 255, 0.06);
}

/* =============================================
   SPONSOR CARDS
   ============================================= */
.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    text-decoration: none;
    cursor: pointer;
    flex: 1 1 calc(25% - 24px);
    max-width: 25%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: var(--neon-pink);
    filter: blur(50px);
    opacity: 0.85;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.sponsor-card:hover {
    transform: translateY(-4px);
}

.sponsor-logo {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.sponsor-card:hover .sponsor-logo {
    filter: brightness(1.1) contrast(1.15);
}

.sponsor-logo.invert-logo {
    filter: invert(1) brightness(0.9) contrast(1.1);
}

.sponsor-card:hover .sponsor-logo.invert-logo {
    filter: invert(1) brightness(1.1) contrast(1.15);
}

.sponsor-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.sponsor-card:hover .sponsor-name {
    color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.footer-glass {
    width: 85%;
    max-width: 1400px;
    margin: 50px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.footer-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-glass .cursive-neon {
    font-size: 72px;
    color: #fff;
    text-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-pink);
    margin: 0;
    letter-spacing: 4px;
}

.by-euroavia {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-decoration: none;
}

.footer-logo p {
    font-size: 18px;
    letter-spacing: 1px;
    color: #b0bac5;
    margin: 0;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 18px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: var(--transition);
}

.social-icon:hover {
    color: #fff;
    background: rgba(255, 0, 127, 0.2);
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
    transform: translateY(-3px);
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.footer-copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* =============================================
   BURGER MENU
   ============================================= */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1005;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #fff;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--neon-blue);
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 1300px) {
    .container-header {
        padding: 5px 20px;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        margin-top: 0;
    }

    .header-fix {
        height: auto;
        min-height: 80px;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-container {
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        width: 100%;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        padding: 0;
        gap: 20px;
    }

    .nav-container.active {
        max-height: 600px;
        padding: 20px 0 30px;
    }

    /* Burger X animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 900px) {
    .section {
        padding: 30px 20px;
        border-radius: var(--radius-md);
        margin-bottom: 30px;
    }

    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
        padding-top: 60px;
        gap: 20px;
    }

    .hero-full-bleed {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

    .hero-content {
        padding: 0 20px;
        flex: none;
    }

    .hero-full-bleed .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: flex-end;
    }

    .hero-full-bleed .hero-visual {
        justify-content: center;
        overflow: visible;
    }

    .drone-neon-sketch {
        width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .hero-img-custom {
        max-height: 50vh;
        height: 100%;
        object-fit: contain;
        object-position: bottom center;
        transform: scale(1.1);
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .neon-text {
        font-size: 86px;
    }

    .neon-title {
        font-size: 86px;
    }

    .gallery-title {
        font-size: 80px;
    }

    .about-flex {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .training-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-strip {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-glass {
        padding: 50px 30px 40px;
        border-radius: var(--radius-lg);
    }

    .footer-glass .cursive-neon {
        font-size: 42px;
    }

    .btn-glass {
        padding: 14px 30px;
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .neon-text {
        font-size: 76px;
    }

    .neon-title {
        font-size: 76px;
    }

    .gallery-title {
        font-size: 56px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-neon,
    .btn-outline {
        width: auto;
        text-align: center;
        justify-content: center;
    }
}

/* =============================================
   REVEAL EFFECTS
   ============================================= */
.hidden-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hidden-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   GALLERY HERO CARDS STACK
   ============================================= */
.gallery-cards-stack {
    perspective: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.card-stack {
    position: relative;
    width: 480px;
    height: 600px;
    transform-style: preserve-3d;
}

.stack-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.stack-img.img-1 {
    transform: rotate(-60deg) translateZ(-40px);
    z-index: 1;
}

.stack-img.img-2 {
    transform: rotate(-30deg) translateZ(0px);
    z-index: 2;
}

.stack-img.img-3 {
    transform: rotate(0deg) translateZ(40px);
    z-index: 3;
}

.card-stack:hover .stack-img.img-1 {
    transform: rotate(-70deg) translateX(-40px) translateZ(-40px);
}

.card-stack:hover .stack-img.img-3 {
    transform: rotate(-10deg) translateX(40px) translateZ(40px);
}

@media (max-width: 900px) {
    .card-stack {
        width: 300px;
        height: 400px;
        margin-top: 30px;
    }

    #gallery-hero {
        padding-bottom: 40px;
    }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 2, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.3);
    border: 1px solid var(--glass-border);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    background: none;
    border: none;
    text-shadow: 0 0 10px var(--neon-pink);
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--neon-pink);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    background: none;
    border: none;
    text-shadow: 0 0 10px var(--neon-blue);
    transition: var(--transition);
    padding: 20px;
    z-index: 10000;
}

.lightbox-nav:hover {
    color: var(--neon-blue);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 500px) {
    .logo-img {
        height: 40px;
    }

    .menu-toggle {
        transform: scale(0.75);
        margin: 0;
    }

    .container-header {
        padding: 5px 15px;
    }
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* =============================================
   QUIZ SECTION STYLES
   ============================================= */
.quiz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Așezare pe 2 coloane */
    gap: 30px;
    margin-top: 20px;
}

.quiz-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    min-height: 320px;
    border: 1px solid var(--glass-border);
}

.quiz-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-shadow: 0 0 15px var(--neon-blue);
}

.quiz-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.quiz-card p {
    font-size: 16px;
    color: #b0bac5;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
    /* Împinge butoanele să fie aliniate la bază */
}

/* Responsivitate pentru mobil: 1 coloană pe ecrane mici */
@media (max-width: 900px) {
    .quiz-grid {
        grid-template-columns: 1fr;
    }

    .quiz-card {
        min-height: auto;
    }
}

/* =============================================
   TRAINER SECTION STYLES
   ============================================= */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trainer-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    /* */
    border: 1px solid var(--glass-border);
    /* */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    aspect-ratio: 5 / 8;
    /* Păstrează forma verticală */
    background: #000;
    /* Fundal negru pentru a masca marginile dacă poza e mai mică */
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    /* Glow cyan */
}

.trainer-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trainer-card-image {
    width: 100%;
    height: 100%;
    /* cover: acopera tot cardul */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
}

.trainer-card:hover .trainer-card-image {
    transform: scale(1.05);
}

.trainer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Gradient puternic pentru lizibilitatea textului */
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 20%, transparent 100%);
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: padding-bottom 0.4s ease;
}

.trainer-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

.trainer-title {
    font-family: 'NEONCITY Script', 'Orbitron', sans-serif;
    font-size: 110px;
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-purple),
        0 0 60px var(--neon-purple);
    font-weight: normal;
    text-transform: none;
    letter-spacing: 4px;
    text-align: center;
    margin: 5px 0 10px 0;
}

.trainer-social {
    color: #fff;
    font-size: 28px;
    transition: var(--transition);
    text-decoration: none;
}

.trainer-social:hover {
    color: var(--neon-pink);
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* =============================================
   TEAM TOGGLE
   ============================================= */
.team-toggle-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.team-toggle-btn {
    background: var(--glass-bg-light);
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-toggle-btn.active,
.team-toggle-btn:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    color: var(--neon-blue);
}

/* =============================================
   LEADERBOARD SECTION STYLES
   ============================================= */
.leaderboard-table {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(0, 229, 255, 0.1);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--neon-blue);
    border-bottom: 1px solid var(--neon-blue);
}

.leaderboard-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.leaderboard-row:hover {
    background: rgba(255, 0, 127, 0.05);
    transform: scale(1.02);
}

.leaderboard-row .rank {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    font-weight: 700;
}

.leaderboard-row .score {
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .logo-img {
        height: 40px;
    }

    .menu-toggle {
        transform: scale(0.75);
        margin: 0;
    }

    .container-header {
        padding: 5px 15px;
    }

    .trainer-name {
        font-size: 20px;
    }
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 400px) {
    .neon-text {
        font-size: 56px;
    }

    .neon-title {
        font-size: 56px;
    }

    .gallery-title {
        font-size: 42px;
    }

    .footer-glass .cursive-neon {
        font-size: 32px;
    }

    .card-title,
    .card-title-location {
        font-size: 20px;
    }

    .hero-date-place {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .info-item {
        min-width: 100%;
        padding: 12px 16px;
    }

    .info-text .value {
        font-size: 14px;
    }

    .section p {
        font-size: 16px;
    }

    .card-body p,
    .location-card p,
    .quiz-card p {
        font-size: 14px;
    }

    .trainer-name {
        font-size: 18px;
    }

    .trainer-title {
        font-size: 76px;
    }
}

@media (max-width: 485px) {

    .leaderboard-header,
    .leaderboard-row {
        padding: 12px 15px;
        display: grid;
        grid-template-columns: 22% 48% 30%;
        gap: 5px;
        align-items: center;
    }

    .leaderboard-header span,
    .leaderboard-row span {
        font-size: 12px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .leaderboard-header span:first-child,
    .leaderboard-row span:first-child {
        text-align: left;
    }

    .leaderboard-header span:last-child,
    .leaderboard-row span:last-child {
        text-align: right;
    }
}

@media (max-width: 380px) {

    .leaderboard-header,
    .leaderboard-row {
        padding: 10px 8px;
        grid-template-columns: 22% 45% 33%;
    }

    .leaderboard-header span,
    .leaderboard-row span {
        font-size: 10px;
    }
}

/* =============================================
   SCHEDULE PAGE SPECIFIC STYLES
   ============================================= */

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.day-card {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.day-card.card-highlight {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.day-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.day-date {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.day-location {
    font-size: 0.95rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.day-location i {
    color: var(--neon-blue);
    margin-right: 8px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.time-row span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    color: #b0bac5;
    min-width: 110px;
}

.time-row span:last-child {
    font-weight: 500;
    text-align: right;
}

/* Row Highlights */
.highlight-pink {
    border-left-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.05);
}

.highlight-pink span:last-child {
    color: var(--neon-pink);
}

.highlight-blue {
    border-left-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.05);
}

.highlight-blue span:last-child {
    color: var(--neon-blue);
}

.highlight-purple {
    border-left-color: var(--neon-purple);
    background: rgba(157, 0, 255, 0.05);
}

.highlight-purple span:last-child {
    color: var(--neon-purple);
}

.highlight-gold {
    border-left-color: var(--neon-gold);
    background: rgba(255, 204, 0, 0.05);
}

.highlight-gold span:last-child {
    color: var(--neon-gold);
}

.active-nav {
    color: var(--neon-blue) !important;
    text-shadow: 0 0 10px var(--neon-blue) !important;
}

@media (max-width: 500px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .time-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .time-row span:last-child {
        text-align: left;
    }
}

/* Schedule Content visibility */
.schedule-content {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure the day-card takes up full width when centered */
#schedule-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* =============================================
   SCHEDULE PAGE - HIGH VISIBILITY UPDATES
   ============================================= */

/* Main Container for the Day Card */
.day-card.schedule-content {
    width: 100%;
    padding: 40px;
    /* Increased padding */
    margin: 0 auto;
}

/* Day Date (e.g., Vineri 27 Martie) */
.day-date {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.8rem;
    /* Bigger */
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
    display: block;
    margin-bottom: 10px;
}

/* Location Text under the Date */
.day-location {
    font-size: 1.2rem;
    /* Bigger */
    color: #ffffff;
    /* Brighter */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.9;
}

/* Timeline Row Layout */
.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    /* More breathing room */
    background: rgba(255, 255, 255, 0.07);
    /* Slightly lighter background */
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    /* Much bigger text */
    border-left: 5px solid transparent;
    /* Thicker accent line */
    margin-bottom: 5px;
    transition: var(--transition);
}

/* The Time Column */
.time-row span:first-child {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #ffffff;
    /* Switched from gray to white */
    min-width: 160px;
    letter-spacing: 1px;
}

/* The Activity Column */
.time-row span:last-child {
    font-weight: 600;
    color: #ffffff;
    /* Pure white for maximum contrast */
    text-align: right;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Hover effect to make rows "pop" */
.time-row:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

/* --- LIGHTER TONE HIGHLIGHTS --- */
/* We use more vibrant versions of your theme colors */

.highlight-pink {
    border-left-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.15);
}

.highlight-pink span:last-child {
    color: #ff80bf;
    /* Lighter pink */
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.highlight-blue {
    border-left-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.15);
}

.highlight-blue span:last-child {
    color: #80f2ff;
    /* Lighter blue */
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.highlight-purple {
    border-left-color: var(--neon-purple);
    background: rgba(157, 0, 255, 0.15);
}

.highlight-purple span:last-child {
    color: #ce80ff;
    /* Lighter purple */
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

.highlight-gold {
    border-left-color: var(--neon-gold);
    background: rgba(255, 204, 0, 0.15);
}

.highlight-gold span:last-child {
    color: #ffe680;
    /* Lighter gold */
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Mobile Adjustments for Big Text */
@media (max-width: 600px) {
    .day-card.schedule-content {
        padding: 20px 15px;
    }

    .time-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        font-size: 1.1rem;
    }

    .time-row span:last-child {
        text-align: left;
        margin-top: 5px;
    }

    .day-date {
        font-size: 1.4rem;
    }
}

/* =============================================
   NAVBAR TEAM LOGGED IN USER STATE
   ============================================= */
.nav-team-name {
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    margin-right: 0;
    letter-spacing: 1px;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-logout:hover {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1), inset 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* =============================================
   QUIZ CARD FULL WIDTH (HOMEPAGE)
   ============================================= */
.quiz-card-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 900px !important;
    margin: 0 auto;
    padding: 30px;
    gap: 30px;
}

.quiz-icon-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-icon-container i {
    font-size: 80px;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 15px currentColor);
}

.quiz-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quiz-content p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #e0e6ed;
}

@media (min-width: 768px) {
    .quiz-card-full {
        flex-direction: row;
        text-align: left;
    }

    .quiz-icon-container {
        width: 30%;
        border-right: 1px solid var(--glass-border);
        padding-right: 30px;
    }

    .quiz-content {
        width: 70%;
        align-items: flex-start;
        text-align: left;
        padding-left: 20px;
    }

    .quiz-content p {
        text-align: left;
    }
}