/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Retro Gaming Aesthetic */
:root {
    --primary-color: #00ff41;
    --secondary-color: #ff00ff;
    --accent-color: #00ffff;
    --danger-color: #ff0000;
    --dark-bg: #0a0a0a;
    --retro-green: #39ff14;
    --retro-purple: #bf00ff;
    --retro-cyan: #00ffff;
}

/* Login Screen */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.login-container {
    text-align: center;
    padding: 2rem;
}

.login-box {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--primary-color);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.retro-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.8); }
    25% { text-shadow: -2px 0 var(--danger-color), 2px 0 var(--accent-color); }
    50% { text-shadow: 2px 0 var(--secondary-color), -2px 0 var(--primary-color); }
    75% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.8); }
}

.retro-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-color);
    color: #fff;
    padding: 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
    border-color: var(--accent-color);
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.retro-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #000;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.retro-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.6);
}

.retro-button:active {
    transform: translateY(0);
}

.error-message {
    color: var(--danger-color);
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

/* Main Content */
.main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.main-content.hidden {
    display: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#backgroundVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
}

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

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-bottom: 8rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 5px;
    animation: titlePulse 2s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.retro-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    letter-spacing: 3px;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
    animation: dateGlow 2s ease-in-out infinite;
}

@keyframes dateGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
        border-color: var(--primary-color);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
        border-color: var(--accent-color);
    }
}

/* Permanent Welcome Message */
.permanent-welcome {
    margin: 1.5rem 0;
    text-align: center;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.5s ease;
}

.permanent-welcome.welcome-animating {
    opacity: 0;
    transform: translateY(20px);
}

.welcome-content {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.welcome-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 0 0.8rem 0;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    animation: welcomeTitleGlow 3s ease-in-out infinite;
}

.welcome-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

@keyframes welcomeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes welcomeTitleGlow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    }
    50% {
        text-shadow: 0 0 25px rgba(0, 255, 255, 0.9);
    }
}

/* Schedule Section */
.schedule-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
    background: var(--background-dark);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--roadmap-red) 0%, var(--roadmap-yellow) 25%, var(--roadmap-green) 50%, var(--roadmap-cyan) 75%, var(--roadmap-red) 100%) 1;
}

.schedule-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/schedule.png') center/cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: -2;
}

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

.schedule-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
}

.schedule-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--roadmap-cyan);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-day {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--roadmap-cyan);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.day-header {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--roadmap-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--roadmap-yellow);
    padding-bottom: 0.5rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background: rgba(0, 191, 255, 0.1);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 8px;
}

.time {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--roadmap-green);
    min-width: 120px;
    text-align: left;
}

.activity {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-white);
    text-align: right;
    flex: 1;
}

/* Mobile responsive for schedule */
@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .schedule-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .schedule-title {
        font-size: 2rem;
    }
    
    .schedule-day {
        padding: 1.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .time,
    .activity {
        text-align: left;
        width: 100%;
    }
}

/* Party Description Section */
.jep-background {
    background: url('img/jep.png') center/cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.party-description-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
    border: 2px solid var(--roadmap-green);
    background: var(--background-dark);
    box-shadow: inset 0 0 50px rgba(0, 177, 64, 0.1);
}

.party-description-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 50, 100, 0.8));
    z-index: -2;
}

.party-description-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('anniversary-landing/img/oasis.png') center/cover, linear-gradient(135deg, #1a1a2e, #16213e);
    opacity: 0.6;
    z-index: -1;
}

.party-description-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.party-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--roadmap-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.party-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-white);
    margin: 0.8rem 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.party-paragraph:hover {
    color: var(--roadmap-cyan);
    transform: translateX(5px);
}

.party-highlight {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--roadmap-yellow);
    margin: 2rem 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 35px rgba(0, 255, 255, 0.9);
        transform: scale(1.02);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 65, 0.9);
        transform: scale(1.05);
    }
}

/* Mobile responsive for party description */
@media (max-width: 768px) {
    .party-description-section {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .party-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .party-paragraph {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    .party-highlight {
        font-size: 2rem;
        margin: 2rem 0;
    }
}

/* Photo Section */
.photo-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/oasis.png') center/cover;
    z-index: -2;
}

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

.photo-content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.section-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.retro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 65, 0.6); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 65, 0.9); }
}

.stat-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

/* Map Section */
.map-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 2rem auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.3);
}

.location-info {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-text, .location-time {
    font-size: 1.2rem;
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
}

/* Footer */
.retro-footer {
    background: #000;
    border-top: 3px solid var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--danger-color);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--retro-green);
    margin: 0 auto 10px;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.8));
    animation: arrowGlow 1.5s ease-in-out infinite;
}

.scroll-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--retro-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: textGlow 1.5s ease-in-out infinite;
}

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

@keyframes arrowGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.8));
        border-top-color: var(--retro-green);
    }
    50% { 
        filter: drop-shadow(0 0 20px rgba(57, 255, 20, 1));
        border-top-color: #00ff41;
    }
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(57, 255, 20, 0.8);
        color: var(--retro-green);
    }
    50% { 
        text-shadow: 0 0 15px rgba(57, 255, 20, 1);
        color: #00ff41;
    }
}

/* Mobile Video Controls */
.video-mobile-controls {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mobile-play-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--retro-green);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: var(--retro-green);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.mobile-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
    background: rgba(0, 0, 0, 0.9);
}

.play-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

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

/* Mobile Video Player */
.mobile-video-player {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mobile-video-player.active {
    display: flex;
}

.mobile-video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-video-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--retro-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--retro-green);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.close-video-btn:hover {
    background: var(--retro-green);
    color: #000;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.burger-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--retro-green);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    transition: all 0.3s ease;
}

.burger-btn:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
}

.burger-btn span {
    display: block;
    height: 3px;
    background: var(--retro-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--retro-green);
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    color: var(--retro-green);
    text-decoration: none;
    padding: 12px 15px;
    margin: 5px 0;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--retro-green);
    color: #fff;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.mobile-nav-link:first-child {
    margin-top: 0;
}

.mobile-nav-link:last-child {
    margin-bottom: 0;
}

/* Mobile Background */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .hero-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 100%);
        position: relative;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../anniversary-landing/img/bg_movile.png') center/cover;
        opacity: 0.8;
        z-index: 1;
    }
    
    #backgroundVideo {
        display: none;
    }
    
    .video-mobile-controls {
        display: block;
    }
    
    .hero-content {
        position: relative;
        z-index: 5;
        padding-bottom: 6rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .retro-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .retro-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .location-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 2rem;
        margin: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .retro-date {
        font-size: 1.5rem;
    }
}
