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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --primary-color: #000000;
    --accent-color: #FFD700;
    --secondary-color: #FFC107;
    --text-color: #ffffff;
    --light-text: #ffffff;
    --background-color: #000000;
    --card-background: #1a1a1a;
    --border-color: #FFD700;
    --success-color: #FFD700;
    --warning-color: #FFC107;
    --error-color: #ff4444;
    --shadow-sm: 0 1px 2px 0 rgba(255, 215, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(255, 215, 0, 0.2), 0 2px 4px -1px rgba(255, 215, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(255, 215, 0, 0.2), 0 4px 6px -2px rgba(255, 215, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(255, 215, 0, 0.2), 0 10px 10px -5px rgba(255, 215, 0, 0.1);
    --section-padding: 6rem 2rem;
    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    animation: morph 8s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    height: 80px; /* Fixed header height */
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    position: relative;
}

.logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    margin-top: -20px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1001;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7))
           drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
           drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.footer-logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    margin: 0;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7))
           drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
           drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

.logo:hover, .footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9))
           drop-shadow(0 0 25px rgba(255, 255, 255, 0.7))
           drop-shadow(0 0 35px rgba(255, 255, 255, 0.5))
           brightness(1.1);
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite, float 3s ease-in-out infinite;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.3;
    filter: blur(10px);
    animation: pulse 2s infinite;
}

.footer-logo-text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    display: block;
}

.footer .logo-text {
    color: #ffffff;
}

/* Header Navigation Links */
.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00c6ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .logo {
        height: 100px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
    
    .footer-logo {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 90px;
        margin-top: -5px;
        margin-bottom: -5px;
    }
    
    .footer-logo {
        height: 90px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #00c6ff;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

.cta-button {
    background-color: #FFD700;
    color: #000000;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: #FFC107;
}

.cta-button::after {
    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%);
    transition: transform 0.6s ease;
}

.cta-button:hover::after {
    transform: translateX(100%);
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem; /* Keep the top padding for header space */
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: textGlow 2s infinite;
    padding-top: 2rem;
}

.hero .subhead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 1rem; /* Adjusted padding for mobile */
    }
    
    .hero h1 {
        font-size: 2.5rem;
        padding-top: 1rem;
    }
    
    .hero .subhead {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem 1rem; /* Further adjusted padding for smaller screens */
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subhead {
        font-size: 1.1rem;
    }
}

/* Hero Badge Animation */
.hero-badge {
    display: none;
}

/* Enhanced Hero Section Effects */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: textGlow 2s infinite;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.6); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
}

/* Enhanced Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(0, 198, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 20%;
    animation-delay: -10s;
}

/* Enhanced Particle Effects */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(0, 198, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat 10s infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); }
    100% { transform: translateY(0) rotateX(0) rotateY(0); }
}

/* Ensure all text remains visible */
.hero-content p,
.hero-cta,
.about-content,
.features-grid,
.city-cards,
.investor-cards,
.beta-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
}

/* Add floating elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Add particle effect */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

/* Add glass morphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Add neon glow effect */
.neon-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
    animation: neon 1.5s ease-in-out infinite alternate;
}

@keyframes neon {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.6),
                     0 0 30px rgba(255, 255, 255, 0.4);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                     0 0 30px rgba(255, 255, 255, 0.6),
                     0 0 40px rgba(255, 255, 255, 0.4);
    }
}

/* Add 3D card effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(5deg);
}

/* Add gradient border effect */
.gradient-border {
    position: relative;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Add shimmer effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

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

/* Cities Section */
.cities {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, rgba(0, 198, 255, 0.05) 0px, rgba(0, 198, 255, 0.05) 2px, transparent 2px, transparent 4px),
        radial-gradient(circle at 30% 30%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    animation: slide 20s linear infinite, morph 8s ease-in-out infinite;
}

.cities h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(0, 198, 255, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.city-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.city-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.city-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.city-info {
    padding: 1.5rem;
}

.city-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.city-info p {
    color: #34495e;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.city-info ul {
    list-style: none;
}

.city-info li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.875rem;
}

.city-info li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.city-card:nth-child(1) { animation-delay: 0.2s; }
.city-card:nth-child(2) { animation-delay: 0.4s; }
.city-card:nth-child(3) { animation-delay: 0.6s; }

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(0, 198, 255, 0.05) 0px, rgba(0, 198, 255, 0.05) 2px, transparent 2px, transparent 4px);
    animation: morph 8s ease-in-out infinite, slide 20s linear infinite;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.testimonial-card h3 {
    position: relative;
    animation: neonPulse 2s infinite;
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimonial-card p {
    position: relative;
    animation: float 4s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.rating {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.user-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.user-info p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.75rem;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 198, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.social-links a:hover {
    color: #FFD700;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #00c6ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-links a:hover::after {
    transform: scaleX(1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column a:hover {
        transform: none;
    }

    .logo-text, .footer-logo-text {
        font-size: 1.25rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column a:hover {
        transform: none;
    }

    .logo-text, .footer-logo-text {
        font-size: 1.25rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .beta-content {
        grid-template-columns: 1fr;
    }

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

    .logo, .footer-logo {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subhead {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .city-cards,
    .features-grid,
    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .logo-container {
        gap: 0.5rem;
    }
    
    .logo, .footer-logo {
        height: 80px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .logo, .footer-logo {
        height: 70px;
    }
}

/* Add loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-out forwards;
    animation-delay: 1s;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Add scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Update section transitions */
section {
    transition: all 0.8s ease;
}

section:hover {
    transform: translateY(-5px);
}

/* Add parallax effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Update card hover effects */
.card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Gradient Text Fix */
.gradient-text {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 8s ease infinite;
}

/* Add fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .gradient-text {
        color: #00c6ff;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

/* Add 3D hover effect */
.hover-3d {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Add typing animation */
.typing {
    border-right: 2px solid var(--accent-color);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--accent-color);
    }
}

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

.investors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, rgba(0, 198, 255, 0.05) 0px, rgba(0, 198, 255, 0.05) 2px, transparent 2px, transparent 4px),
        radial-gradient(circle at 50% 50%, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    animation: slide 20s linear infinite, rotate 20s linear infinite;
}

.investor-content {
    max-width: 1200px;
    margin: 0 auto;
}

.investor-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-card h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

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

.investor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.investor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

.investor-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.investor-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investor-card ul li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.2s);
    font-size: 1.1rem;
    line-height: 1.6;
}

.investor-card ul li::before {
    content: "→";
    color: #00c6ff;
    position: absolute;
    left: 0;
    animation: neonPulse 2s infinite;
}

.investor-contact {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.investor-contact h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.investor-contact p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: neonPulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
} 

/* Section Headers */
section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite, float 6s ease-in-out infinite;
    position: relative;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(0, 198, 255, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-intro {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.about-card h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.about-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.about-card ul li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-card ul li:before {
    content: "→";
    color: #FFD700;
    position: absolute;
    left: 0;
    animation: neonPulse 2s infinite;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .about-card p, .about-card ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 3rem 1rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.4rem;
    }
}

/* Ensure video background works on mobile */
@media (max-width: 480px) {
    .hero-video {
        height: 100%;
        object-position: center;
    }
}

/* Cities Section */
.cities {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
}

.city-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.city-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

/* Investors Section */
.investors {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
}

.investor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.investor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

/* Beta Section */
.beta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
}

.beta-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.beta-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

/* Text Visibility */
.about-intro, .about-card p, .city-card p, .investor-card p, .beta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-card h3, .city-card h3, .investor-card h3, .beta-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

/* List Items */
.about-card ul li, .city-card ul li, .investor-card ul li {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    animation: float 4s ease-in-out infinite;
    animation-delay: calc(var(--delay) * 0.2s);
}

.about-card ul li::before, .city-card ul li::before, .investor-card ul li::before {
    content: "→";
    color: #00c6ff;
    position: absolute;
    left: 0;
    animation: neonPulse 2s infinite;
}

/* Contact Button */
.cta-button {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: neonPulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    section h2 {
        font-size: 2.5rem;
    }
    
    .about-card, .city-card, .investor-card, .beta-content {
        padding: 1.5rem;
    }
    
    .about-intro, .about-card p, .city-card p, .investor-card p, .beta-content p {
        font-size: 1rem;
    }
}

/* Beta Program Section */
.beta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
    color: #ffffff;
}

.beta-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    color: #ffffff;
}

.beta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.beta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Investor Section */
.investors {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    color: #ffffff;
}

.investor-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    color: #ffffff;
}

.investor-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.investor-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00c6ff;
    transition: width 0.3s ease;
}

.footer-column ul li a:hover::after {
    width: 100%;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 6rem 2rem;
    color: #ffffff;
}

.contact-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
    color: #ffffff;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.contact-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .beta-content, .investor-content, .contact-content {
        padding: 2rem;
    }
    
    .beta-content h2, .investor-content h2, .contact-content h2 {
        font-size: 2rem;
    }
    
    .beta-content p, .investor-content p, .contact-content p {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .footer-column ul li a {
        font-size: 1rem;
    }
}

/* Investor Email Section */
.investor-email {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.investor-email h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.investor-email p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.investor-email a {
    color: #00c6ff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.3);
    transition: all 0.3s ease;
    animation: neonPulse 2s infinite;
}

.investor-email a:hover {
    background: rgba(0, 198, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 198, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .investor-email {
        padding: 1.5rem;
    }
    
    .investor-email h3 {
        font-size: 1.5rem;
    }
    
    .investor-email p {
        font-size: 1.1rem;
    }
    
    .investor-email a {
        font-size: 1.3rem;
    }
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(0, 198, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 198, 255, 0.15);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 198, 255, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 198, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3);
    border-color: rgba(0, 198, 255, 0.5);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #00c6ff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.8);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    display: block;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investor-cards {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .investor-card {
        padding: 1.5rem;
    }
    
    .investor-card h3 {
        font-size: 1.5rem;
    }
    
    .investor-card ul li {
        font-size: 1rem;
    }
}

/* Services Section */
.features {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    animation: neonPulse 2s infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    color: #fff;
}

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

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 150, 255, 0.2);
}

.partner-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(0, 150, 255, 0.5);
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.partner-card ul li {
    color: #fff;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.partner-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0096ff;
}

.contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    color: #fff;
    margin: 0;
}

.contact-info a {
    color: #0096ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00bfff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .partners {
        padding: 3rem 1rem;
    }
    
    .partners h2 {
        font-size: 2rem;
    }
    
    .partner-cards {
        grid-template-columns: 1fr;
    }
}

.moving-vehicle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.vehicle {
    position: absolute;
    width: 200px;
    height: 80px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: moveVehicle 20s linear infinite;
}

.vehicle::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 80px 0 0 rgba(255, 255, 255, 0.2);
}

.vehicle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 80px 0 0 rgba(255, 255, 255, 0.1);
}

@keyframes moveVehicle {
    0% {
        transform: translateX(-200px) translateY(20vh) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) translateY(40vh) rotate(5deg);
    }
    50% {
        transform: translateX(50vw) translateY(30vh) rotate(0deg);
    }
    75% {
        transform: translateX(75vw) translateY(50vh) rotate(-5deg);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(20vh) rotate(0deg);
    }
}

/* Update hero section to accommodate the animation */
.hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

/* Add a subtle trail effect */
.vehicle-trail {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    animation: pulseTrail 2s ease-in-out infinite;
}

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

/* Expansion Plan Section */
.expansion-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.8rem 2rem;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tab-button.active {
    background: #00c6ff;
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    transform: translateY(-2px);
    border-color: #00c6ff;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.tab-content h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 198, 255, 0.8);
    animation: neonPulse 2s infinite;
    background: linear-gradient(135deg, rgba(0, 198, 255, 0.2) 0%, rgba(0, 198, 255, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 198, 255, 0.3);
}

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

.state-card, .country-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.state-card:hover, .country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.5);
}

.state-card h4, .country-card h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
}

.state-card ul, .country-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.state-card ul li, .country-card ul li {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.state-card ul li:last-child, .country-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .expansion-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 200px;
    }
    
    .state-grid, .country-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-content h3 {
        font-size: 2rem;
        padding: 1rem;
    }
    
    .state-card h4, .country-card h4 {
        font-size: 1.2rem;
    }
    
    .state-card ul li, .country-card ul li {
        font-size: 1rem;
    }
}

/* Expansion Plan Navigation */
.expansion-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.expansion-nav .nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.expansion-nav .nav-link:hover {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.expansion-section {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.expansion-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Update existing state and country cards */
.state-card, .country-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.state-card:hover, .country-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .expansion-nav {
        gap: 1rem;
    }
    
    .expansion-nav .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .expansion-section {
        padding: 1.5rem;
    }
}

.expansion-section h3 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: neonPulse 2s infinite;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.state-card h4, .country-card h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.expansion-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(0, 198, 255, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.3);
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.expansion-nav .nav-link:hover {
    background: rgba(0, 198, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
    border-color: rgba(0, 198, 255, 0.5);
}

/* Global Section Styles */
section {
    position: relative;
    padding: 6rem 2rem;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

section > * {
    position: relative;
    z-index: 2;
}

/* Container for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: neonPulse 2s infinite;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cities Section */
.cities {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.expansion-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.expansion-section {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Investors Section */
.investors {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.investor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Beta Section */
.beta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.beta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    section {
        padding: 5rem 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    section h2 {
        font-size: 2.5rem;
        padding: 1.2rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1rem;
    }
    
    section h2 {
        font-size: 2rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .about-grid,
    .features-grid,
    .investor-cards,
    .partner-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expansion-nav {
        gap: 1rem;
    }
    
    .expansion-section {
        padding: 1.5rem;
    }
    
    .beta-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Add a subtle animation to the glow effect */
@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7))
               drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
               drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8))
               drop-shadow(0 0 25px rgba(255, 255, 255, 0.6))
               drop-shadow(0 0 35px rgba(255, 255, 255, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7))
               drop-shadow(0 0 20px rgba(255, 255, 255, 0.5))
               drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    }
}

.logo, .footer-logo {
    animation: logoGlow 3s ease-in-out infinite;
}