<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #0078D4;
    --secondary-color: #50E6FF;
    --dark-color: #243A5E;
    --light-color: #F5F5F5;
    --bg-color: #ffffff;
    --text-color: #333333;
    --footer-bg: #243A5E;
    --footer-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    display: none;
}

.nav-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem;
    list-style: none;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 120, 212, 0.1);
}

.hero {
    min-height: 100vh;
    background: linear-gradient(-45deg, 
        rgba(0, 120, 212, 0.9), 
        rgba(36, 58, 94, 0.9),
        rgba(80, 230, 255, 0.8),
        rgba(0, 0, 0, 0.8)
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    padding-top: 60px; /* Add padding to hero section */
}

@keyframes gradientBG {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 120, 212, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 15px rgba(0, 120, 212, 0.5); }
    50% { box-shadow: 0 0 25px rgba(0, 120, 212, 0.8); }
    100% { box-shadow: 0 0 15px rgba(0, 120, 212, 0.5); }
}

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

section {
    padding: 5rem 10%;
}

section:first-of-type {
    padding-top: calc(4rem + 60px); /* navbar height + desired padding */
}

.communities-section {
    background: linear-gradient(to bottom, var(--light-color) 0%, white 100%);
    padding: 6rem 10%;
    position: relative;
    overflow: hidden;
}

/* Add floating shapes in background */
.communities-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
    animation: morphShape 15s ease-in-out infinite;
}

.communities-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    opacity: 0.1;
    animation: floatBubble 10s ease-in-out infinite;
}

@keyframes morphShape {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.community-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.community-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 45%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.2) 55%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.community-card:hover::before {
    transform: translateX(100%);
}

.community-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.community-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.community-card:hover h3::after {
    width: 100%;
}

.community-card p {
    color: var(--dark-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.community-card a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transform: translateX(-100%);
}

.community-card:hover a::before {
    animation: shimmer 1.5s infinite;
}

.community-card a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 120, 212, 0.4);
    background: var(--dark-color);
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

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

/* Stagger animation for cards */
.community-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.community-card:nth-child(1) { animation-delay: 0.1s; }
.community-card:nth-child(2) { animation-delay: 0.2s; }
.community-card:nth-child(3) { animation-delay: 0.3s; }
.community-card:nth-child(4) { animation-delay: 0.4s; }
.community-card:nth-child(5) { animation-delay: 0.5s; }
.community-card:nth-child(6) { animation-delay: 0.6s; }
.community-card:nth-child(7) { animation-delay: 0.7s; }

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

/* Add responsive hover effects for mobile */
@media (hover: hover) {
    .community-card:hover {
        transform: translateY(-10px) rotateX(5deg);
    }
}

@media (hover: none) {
    .community-card:active {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .communities-section::before,
    .communities-section::after {
        display: none;
    }

    nav {
        padding: 0.8rem 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 999;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 998;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-menu li:nth-child(2) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.6s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.7s; }

    .nav-menu li a {
        font-size: 1.2rem;
        color: var(--dark-color);
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(0, 120, 212, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }

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

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

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

    body.menu-open {
        overflow: hidden;
    }
}

section h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    overflow: hidden;
}

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

section h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    100% { left: 100%; }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 5rem 10%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: countUpAndBounce 2s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

@keyframes countUpAndBounce {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    60% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Add responsive improvements */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Events Section */
.events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

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

/* Current Events Status */
.events-status {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
}

.status-icon {
    margin-bottom: 1.5rem;
}

.status-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.status-content h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.status-content p {
    color: #666;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--dark-color);
}

/* Past Events */
.past-events {
    margin-top: 4rem;
}

.past-events h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.event-date {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.event-header h4 {
    font-size: 1.5rem;
    margin: 0;
}

.event-content {
    padding: 1.5rem;
}

.event-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

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

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
}

.metric i {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .events-section {
        padding: 4rem 0;
    }

    .events-container {
        padding: 0 1rem;
    }

    .events-status {
        padding: 2rem 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

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

    .event-metrics {
        grid-template-columns: 1fr;
    }
}

/* General Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navigation */
    nav ul {
        gap: 1.5rem;
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    /* Section Padding */
    section {
        padding: 4rem 1rem;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Grids and Flexbox */
    .grid {
        grid-template-columns: 1fr;
    }

    .flex {
        flex-direction: column;
    }

    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* Cards */
    .card {
        margin: 1rem 0;
    }

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

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 5rem 2rem;
    }

    .container {
        padding: 0 2rem;
    }
}

/* Enhanced About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

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

/* Main Introduction */
.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-text h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.intro-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.key-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

/* Journey Timeline */
.journey-timeline {
    margin-top: 4rem;
}

.journey-timeline h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    margin: 2rem 0;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

@media (max-width: 768px) {
    .key-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 2rem;
    }

    .stat-box {
        min-width: unset;
    }
}

/* Enhanced Footer Styles */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    padding: 6rem 10% 2rem;
    margin-top: 4rem;
    scroll-margin-top: 80px;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    color: var(--footer-bg);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

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

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

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

.social-icons a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    animation: fadeInUp 1s ease;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Join MLSA Section */
.join-section {
    background: linear-gradient(135deg, #0078D4, #002050);
    color: white;
    padding: 4rem 0;
}

.join-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

/* Introduction */
.join-intro {
    text-align: center;
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.join-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.join-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #50E6FF;
    display: block;
    margin-bottom: 0.5rem;
}

/* Eligibility */
.eligibility-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.eligibility-section h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.eligibility-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    list-style: none;
}

.eligibility-section li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.eligibility-section i {
    color: #50E6FF;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.eligibility-section h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Benefits Grid */
.benefits-section {
    margin-bottom: 4rem;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.benefit-item i {
    font-size: 2rem;
    color: #50E6FF;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Journey Steps */
.journey-section {
    margin-top: 4rem;
}

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

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.step i {
    font-size: 1.8rem;
    color: #50E6FF;
    margin-bottom: 1rem;
}

.step h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* CTA Button */
.join-cta {
    text-align: center;
    margin-top: 4rem;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: #50E6FF;
    color: #002050;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background: #fff;
    transform: translateY(-2px);
}

.join-cta p {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .eligibility-section ul {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Past Events Archive Styles */
.past-events-section {
    background: var(--light-color);
    padding: 6rem 10%;
}

.events-timeline {
    margin-top: 4rem;
}

.event-year {
    margin-bottom: 4rem;
}

.event-year h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.event-year h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
}

.past-event-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.past-event-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.event-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.past-event-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.event-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.event-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-highlights span {
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .event-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Update Hall of Fame styles */
.gold-requirements {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
}

.gold-requirements h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.gold-requirements ul {
    list-style: none;
}

.gold-requirements li {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gold-requirements li i {
    color: #FFD700;
}

.description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 1rem 0;
}

/* Update badge for coming soon */
.gold-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Add scroll-to-top button styles */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
}

/* No Events Styles */
.no-events {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.no-events i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-events h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.social-quick-links {
    margin-top: 2rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Add these styles for the Coming Soon effect */
.coming-soon-container {
    margin-top: 4rem;
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    position: relative;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-content {
    position: relative;
    z-index: 2;
}

.badge-content i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    display: block;
    animation: starTwinkle 2s ease-in-out infinite;
}

.badge-content span {
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFD700;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.pulse-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #FFD700;
    border-radius: 15px;
    animation: pulse 2s ease-out infinite;
    opacity: 0;
}

.ring:nth-child(2) {
    animation-delay: 0.5s;
}

.ring:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.8;
    }
}

/* Make it responsive */
@media (max-width: 768px) {
    .coming-soon-badge {
        padding: 1.5rem 2rem;
    }
    
    .badge-content span {
        font-size: 1.5rem;
    }
    
    .badge-content p {
        font-size: 1rem;
    }
}

/* Enhanced Join Section Styles */
.program-intro {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.eligibility-criteria ul {
    list-style: none;
    margin: 1.5rem 0;
}

.eligibility-criteria li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.path-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.path-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .path-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Hall of Fame Section */
.hall-of-fame-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hall-of-fame-section h2 {
    color: white;
    margin-bottom: 3rem;
}

.coming-soon-message {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.message-content i {
    font-size: 3rem;
    color: #50E6FF;
    margin-bottom: 1.5rem;
}

.message-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #50E6FF;
}

.message-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hall-of-fame-section {
        padding: 4rem 1rem;
    }

    .coming-soon-message {
        padding: 2rem 1.5rem;
    }

    .message-content h3 {
        font-size: 1.8rem;
    }

    .message-content p {
        font-size: 1rem;
    }
}

/* Enhanced Communities Section Intro */
.communities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.communities-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.communities-intro .section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.community-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-color);
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.highlight span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .communities-intro h3 {
        font-size: 1.5rem;
    }

    .community-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .highlight {
        justify-content: center;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 0.5rem 0;
    }

    nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0.8rem;
        align-items: center;
    }

    nav ul li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    /* Hero Section */
    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Communities Section */
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .community-card {
        padding: 1.5rem;
    }

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

    /* Stats Section */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Events Section */
    .events-container {
        padding: 0 1rem;
    }

    .events-status {
        padding: 2rem 1rem;
    }

    .event-card {
        margin: 0 1rem 1.5rem;
    }

    /* General Section Adjustments */
    section {
        padding: 3rem 1rem;
    }

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

    /* Text Adjustments */
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Button Adjustments */
    .cta-button, .social-link, .apply-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .footer-section {
        padding: 0 1rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .community-card, .event-card {
        margin: 0 0 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 4rem 2rem;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 4rem 1rem;
        min-height: auto;
    }

    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Add styles to ensure proper scrolling position */
html {
    scroll-padding-top: 80px; /* Adjust this value based on your navbar height */
    scroll-behavior: smooth;
}

/* Update footer styles to ensure it's properly targeted */
.site-footer {
    scroll-margin-top: 80px;
}

/* Enhanced Contact Section Styles */
.contact-section {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.contact-item .info p {
    color: var(--footer-text);
    font-size: 1rem;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Updated Hamburger Menu Styles */
.nav-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 999;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Different widths for each line */
.nav-toggle span:nth-child(1) {
    width: 26px;
}

.nav-toggle span:nth-child(2) {
    width: 20px;
    margin-left: -6px;
}

.nav-toggle span:nth-child(3) {
    width: 16px;
    margin-left: -10px;
}

/* Hover effect */
.nav-toggle:hover span {
    width: 26px;
    margin-left: 0;
}

/* Active state animations */
.nav-toggle.active span {
    width: 26px;
    margin-left: 0;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-section {
        padding: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        margin-right: 0.5rem;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Enhanced Mobile Navigation Styles */
@media (max-width: 768px) {
    nav {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 0.8rem 1.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .nav-menu li:nth-child(2) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.5s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.6s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.7s; }

    .nav-menu li a {
        font-size: 1.2rem;
        color: var(--dark-color);
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(0, 120, 212, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    /* Enhanced Hamburger Menu */
    .nav-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 7px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 999;
        position: relative;
    }

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

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

    /* Add overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 997;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
</pre></body></html>