/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

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

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

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

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

:root {
    /* Default (Dark) Theme Variables */
    --body-bg: #020105;
    --canvas-gradient: radial-gradient(circle at center, #0a0210 0%, #000000 80%);
    --bg-panel: rgba(20, 10, 30, 0.7);
    --primary-purple: #9d00ff;
    --neon-purple: #bd00ff;
    --accent-blue: #00f7ff;
    --text-main: #ffffff;
    --text-dim: #cccccc;
    --border-color: rgba(157, 0, 255, 0.15);
    --watermark-color: rgba(157, 0, 255, 0.03);
    --watermark-stroke: rgba(157, 0, 255, 0.1);
}

[data-theme="light"] {
    --body-bg: #e6e0f0;
    /* Darker off-white/lavender to reduce glare */
    --canvas-gradient: radial-gradient(circle at center, #f8f5fc 0%, #dcd2ea 80%);
    --bg-panel: rgba(255, 255, 255, 0.75);
    /* More solid panel for contrast */
    --primary-purple: #7000b8;
    /* Darker purple for better text contrast */
    --neon-purple: #9a00e6;
    --text-main: #12041a;
    /* Very dark purple-black for clear readability */
    --text-dim: #3d2a45;
    --border-color: rgba(112, 0, 184, 0.3);
    /* Easier to see borders */
    --watermark-color: rgba(112, 0, 184, 0.04);
    --watermark-stroke: rgba(112, 0, 184, 0.08);
}

[data-theme="black"] {
    --body-bg: #000000;
    --canvas-gradient: radial-gradient(circle at center, #000000 0%, #000000 100%);
    --bg-panel: rgba(0, 0, 0, 0.85);
    /* Darker, less transparent */
    --primary-purple: #a600ff;
    --neon-purple: #d54dff;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --border-color: rgba(166, 0, 255, 0.4);
    /* Stronger borders */
    --watermark-color: rgba(166, 0, 255, 0.05);
    --watermark-stroke: rgba(166, 0, 255, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--canvas-gradient);
    transition: background 0.5s ease;
}


/* Watermark */
.watermark-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.watermark-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 20vw;
    font-weight: 900;
    color: var(--watermark-color);
    -webkit-text-stroke: 3px var(--watermark-stroke);
    white-space: nowrap;
    animation: pulseWatermark 10s infinite alternate;
}

.watermark-icon {
    font-size: 25vw;
    color: var(--watermark-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes pulseWatermark {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

/* Typography & Utilities */
h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.glow-text {
    text-shadow: 0 0 10px var(--primary-purple), 0 0 20px var(--primary-purple);
}

.purple-neon {
    color: var(--neon-purple);
    text-shadow: 0 0 15px var(--neon-purple), 0 0 30px var(--neon-purple);
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.5s ease, border-color 0.4s ease, background-color 0.5s ease;
}

.section-padding {
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 5%;
    display: grid;
    /* Changed to Grid for precise 3-column layout */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    transition: 0.3s;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    /* Adaptive color */
    justify-self: start;
    /* Grid alignment */
}

.team-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-purple));
    transition: transform 0.3s;
}

.logo-container:hover .team-logo-img {
    transform: scale(1.1);
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-self: center;
    /* Grid alignment */
}

.nav-item {
    text-decoration: none;
    color: var(--text-main);
    /* Adaptive color */
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    display: inline-block;
    /* Required for ::after width */
}

/* Nav Item Underline Animation */
.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--neon-purple);
    transition: width 0.3s ease;
    /* Shrinks when mouse leaves */
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    /* Center the line */
    box-shadow: 0 0 10px var(--neon-purple);
}

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

.nav-item:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Nav Controls (Lang + Theme) */
/* Nav Controls (Lang + Theme) */
.nav-controls {
    justify-self: end;
    display: flex;
    gap: 12px;
    align-items: center;
}


.nav-controls .cta-button {
    margin-left: 0;
    padding: 8px 16px;
    font-size: 0.9rem;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    min-width: unset;
    cursor: pointer;
    color: #000000 !important;
    /* Force black text */
    font-weight: 700;
    /* Bold text */
    /* Override previous min-width */
}

.small-btn {
    padding: 6px 12px !important;
    font-size: 0.85rem !important;
    min-width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-btn {
    padding: 6px !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) !important;
    /* Make icon solid black */
    display: block;
}


/* Remove shine effect from small nav buttons to avoid visual clutter */
.nav-controls .cta-button::after {
    display: none;
}

.mobile-nav-toggle {
    display: none;
}


/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: text-shadow 0.6s ease, transform 0.3s ease;
    cursor: default;
    text-shadow: 0 0 0 transparent;
    /* Base state for smooth fade out */
}

.hero-content h1:hover {
    text-shadow: 0 0 30px var(--primary-purple), 0 0 60px var(--neon-purple);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-dim);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ... */

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary-purple), #5e0099);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    /* For flash effect */
    /* Smooth transition for Glow Fade In/Out */
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.5s ease;
}


.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.cta-button:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.8);
}

/* Scroll Mouse Animation */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 5px;
        opacity: 1;
    }

    100% {
        top: 25px;
        opacity: 0;
    }
}

/* About Section */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    transition: text-shadow 0.5s ease;
    cursor: default;
    text-shadow: 0 0 0 transparent;
    /* Base state for smooth fade out */
}

.section-title:hover {
    text-shadow: 0 0 20px var(--primary-purple), 0 0 40px var(--neon-purple);
}



.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 1 row of 4 */
    gap: 20px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* About Card Glow */
.about-card {
    padding: 25px;
    /* Smaller padding */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    overflow: hidden;
    /* Base states for smooth fade out */
    box-shadow: 0 0 0 transparent;
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    /* Less movement */
    border-color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(157, 0, 255, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    /* Smaller icon */
    color: var(--neon-purple);
    margin-bottom: 15px;
    transition: text-shadow 0.5s ease;
}

.about-card:hover .card-icon {
    text-shadow: 0 0 15px var(--neon-purple);
}



/* Updates Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    direction: ltr;
    /* Restored LTR structure for centered alignment */
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(157, 0, 255, 0.5);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    box-shadow: 0 0 20px var(--primary-purple);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    margin-bottom: 30px;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Content Styling */
/* Timeline Content Styling */
.timeline-item .content {
    padding: 25px;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(157, 0, 255, 0.2);
    text-align: right;
    direction: rtl;
    /* Ensure Hebrew text flows correctly inside the LTR box */
    background: rgba(10, 5, 20, 0.4);
    transition: all 0.6s ease;
    box-shadow: 0 0 0 transparent;
    /* Base state for smooth fade out */
}

.timeline-item .content:hover {
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Ensure text alignment starts reliably */
.timeline-item .content h3 {
    margin-top: 0;
}

/* Structural placement classes (Physical Left/Right) */
.left {
    left: 0;
}

.right {
    left: 50%;
}

/* Dots on timeline */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    /* Slightly larger */
    height: 24px;
    background-color: var(--neon-purple);
    border: 4px solid #020105;
    /* Match body background to "cut" the line visually */
    top: 28px;
    /* Fine-tuned alignment with H3 title */
    border-radius: 50%;
    z-index: 2;
    /* Ensure on top of line */
    box-shadow: 0 0 15px var(--primary-purple);
}

/* Left item dot places on the right side of the box (the center line) */
.left::after {
    right: 0;
    transform: translateX(50%);
    /* Robust centering */
}

/* Right item dot places on the left side of the box (the center line) */
.right::after {
    left: 0;
    transform: translateX(-50%);
    /* Robust centering */
}

/* Fade In Stagger Delays */
.timeline-item:nth-child(1) {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.3s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.5s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.7s;
}


/* Mobile Responsive adjustment for Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
        /* Line moves to left side */
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
        /* Align dot with the new line position */
        right: auto;
        /* Reset right for .left items */
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0;
    }

    .timeline-item .content {
        text-align: right;
    }
}




/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    animation: pulseGlow 4s infinite alternate;
}

.gallery-item:nth-child(even) {
    animation-delay: 2s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-purple);
    z-index: 10;
}

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

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

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(157, 0, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 25px rgba(157, 0, 255, 0.5);
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(157, 0, 255, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-purple);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Floating Background Gallery */
#floating-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height set in JS */
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    perspective: 1500px;
    /* Stronger perspective for better depth */
}

.float-item {
    position: absolute;
    opacity: 0.3;
    /* Subtle to not clutter */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Deep shadow for depth */
    overflow: hidden;
    will-change: transform;
}

.float-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Generic Drift Keyframes (used with random durations) */
@keyframes drift {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Refined Footer */
footer {
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(157, 0, 255, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--neon-purple);
    font-size: 1.4rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    font-size: 1.8rem;
    color: var(--text-main);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.social-icon:hover {
    color: var(--neon-purple);
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
    text-shadow: 0 0 15px var(--neon-purple);
}

/* Events Table */
.events-table-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px;
    /* Prevent shadow clipping */
    /* Hide Scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.events-table-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.events-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    /* Gap between rows */
    text-align: right;
    min-width: 600px;
    /* Ensure table doesn't squish too much on mobile */
}

.events-table th {
    padding: 15px 20px;
    color: var(--neon-purple);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-table tr.event-row {
    background: var(--bg-panel);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.events-table tr.event-row:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
    border: 1px solid var(--primary-purple);
    /* If border on TR is supported (it's tricky in CSS, usually on TD) */
}

/* Rounded corners for rows */
.events-table td:first-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.events-table td:last-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.events-table td {
    padding: 20px;
    /* Reduced padding */
    color: var(--text-main);
    vertical-align: middle;
}

/* Badges */
.rank-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(157, 0, 255, 0.2);
    border: 1px solid var(--primary-purple);
    color: white;
}

.rank-1 {
    background: rgba(255, 215, 0, 0.2);
    border-color: gold;
    color: gold;
    text-shadow: 0 0 10px gold;
}

.rank-2 {
    background: rgba(192, 192, 192, 0.2);
    border-color: silver;
    color: silver;
    text-shadow: 0 0 10px silver;
}

.status-upcoming {
    color: var(--accent-blue);
    font-style: italic;
}

/* LTR Adjustment for English */
html[dir="ltr"] .events-table {
    text-align: left;
}

html[dir="ltr"] .events-table td:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

html[dir="ltr"] .events-table td:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}


.credits {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

/* Scroll Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes floatHover {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cta-resources-btn:hover {
    box-shadow: 0 0 20px var(--neon-purple);
    animation: floatHover 2s infinite ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile Styles */
    .navbar {
        grid-template-columns: auto 1fr;
        /* Logo and Controls */
        padding: 0.8rem 15px;
    }

    .logo-container {
        gap: 10px;
    }

    .logo {
        font-size: 0.9rem;
    }

    .team-logo-img {
        height: 35px;
    }

    .team-num {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-panel);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-purple);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 12px;
        cursor: pointer;
        font-size: 1.2rem;
        transition: 0.3s;
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
    }

    .mobile-nav-toggle:active {
        transform: scale(0.9);
    }

    /* Typography Adjustments */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Layout Adjustments */
    .container {
        width: 92%;
    }

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

    .events-table th,
    .events-table td {
        padding: 12px;
        font-size: 0.85rem;
    }

    .events-table th:nth-child(3),
    .events-table td:nth-child(3) {
        display: none;
        /* Hide location on small mobile */
    }

    /* Floating items scales down */
    .float-item {
        transform-origin: center center;
        scale: 0.5;
    }
}

.cta-banner-content {
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-color: var(--neon-purple);
    background: rgba(157, 0, 255, 0.1);
}

.cta-banner-text {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .cta-banner-content {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .cta-banner-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {

    /* Scale down floating items on mobile */
    .float-item {
        transform-origin: center center;
        scale: 0.6;
    }
}