/* Launch Xpress - Space Theme Styles */

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

:root {
    --space-black: #0a0e27;
    --cosmic-purple: #6B46C1;
    --rocket-orange: #FF6B35;
    --star-yellow: #FFD23F;
    --nebula-pink: #FF006E;
    --astro-blue: #4361EE;
    --moon-gray: #8B8C89;
    --success-green: #00F5A0;
    --danger-red: #FF3366;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #151931 50%, #1e2341 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Starfield Animation */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-size: 1000px 1000px;
}

.stars {
    background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
                      radial-gradient(2px 2px at 60% 70%, white, transparent),
                      radial-gradient(1px 1px at 50% 50%, white, transparent);
    animation: stars 120s linear infinite;
}

.stars2 {
    background-image: radial-gradient(1px 1px at 10% 10%, white, transparent),
                      radial-gradient(1px 1px at 80% 80%, white, transparent);
    animation: stars 240s linear infinite;
}

.stars3 {
    background-image: radial-gradient(1px 1px at 40% 40%, white, transparent);
    animation: stars 360s linear infinite;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1000px); }
}

/* Floating Rockets */
.floating-rockets {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.rocket {
    position: absolute;
    font-size: 30px;
    animation: float-rocket 20s infinite ease-in-out;
}

.rocket-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.rocket-2 {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.rocket-3 {
    bottom: 30%;
    left: 80%;
    animation-delay: 14s;
}

@keyframes float-rocket {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
    75% { transform: translateY(-20px) rotate(5deg); }
}

/* Development Banner */
.dev-warning {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--danger-red), var(--rocket-orange));
    padding: 8px;
    text-align: center;
    z-index: 9999;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.dev-content {
    position: relative;
}

.blink {
    animation: blink 1s infinite;
}

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

.close-dev {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Navigation */
.space-nav {
    position: relative;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--cosmic-purple);
    padding: 15px 0;
    margin-top: 40px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 24px;
}

.logo-rocket {
    font-size: 30px;
    animation: rocket-bounce 2s infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(15deg); }
}

.logo-text {
    background: linear-gradient(135deg, var(--star-yellow), var(--rocket-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    color: var(--nebula-pink);
}

.logo-badge {
    background: var(--success-green);
    color: var(--space-black);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse-badge 2s infinite;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--star-yellow);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--star-yellow);
    transition: width 0.3s;
}

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

.wallet-btn {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--astro-blue));
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.glow-btn {
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
}

.wallet-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(67, 97, 238, 0.8);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-space {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.launch-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 0, 110, 0.2);
    border: 1px solid var(--nebula-pink);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    animation: alert-glow 2s infinite;
}

@keyframes alert-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 110, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.8); }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--nebula-pink);
    border-radius: 50%;
    animation: pulse-dot 1s infinite;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--star-yellow), var(--rocket-orange), var(--nebula-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.outline-text {
    -webkit-text-stroke: 2px var(--astro-blue);
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card.mini {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--star-yellow);
    font-family: 'Orbitron', monospace;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 5px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rocket-orange), var(--nebula-pink));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--astro-blue);
    color: var(--astro-blue);
}

.btn-secondary:hover {
    background: var(--astro-blue);
    color: white;
    transform: translateY(-3px);
}

/* Hero Rocket Animation */
.hero-rocket {
    position: relative;
    height: 500px;
}

.main-rocket {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rocket-fly 4s infinite ease-in-out;
}

@keyframes rocket-fly {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-40%, -60%) rotate(-10deg); }
    50% { transform: translate(-60%, -40%) rotate(10deg); }
    75% { transform: translate(-45%, -55%) rotate(-5deg); }
}

.rocket-body {
    font-size: 150px;
}

.rocket-fire {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    animation: fire-flicker 0.3s infinite;
}

@keyframes fire-flicker {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

.smoke-trail {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    filter: blur(20px);
    animation: smoke-flow 2s infinite;
}

@keyframes smoke-flow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); }
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

.planet {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 80px;
    animation: planet-rotate 30s linear infinite;
}

@keyframes planet-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Launch Cards */
.live-launches {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.fire-icon {
    animation: fire-wiggle 0.5s infinite;
}

@keyframes fire-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.live-badge {
    background: var(--danger-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 16px;
    animation: live-pulse 1s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.launches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.launch-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.launch-card:hover {
    transform: translateY(-10px);
    border-color: var(--cosmic-purple);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.3);
}

.launch-card.hot {
    border-color: var(--rocket-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
}

.launch-card.ending {
    border-color: var(--danger-red);
    animation: urgent-pulse 1s infinite;
}

@keyframes urgent-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 51, 102, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 51, 102, 0.6); }
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--rocket-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.card-badge.warning {
    background: var(--danger-red);
    animation: badge-blink 1s infinite;
}

@keyframes badge-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.project-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 15px;
}

.project-name {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.project-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.countdown-timer.urgent {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid var(--danger-red);
}

.time-unit {
    text-align: center;
}

.time-value {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--star-yellow);
}

.time-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 5px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 25px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-percent {
    color: var(--success-green);
    font-weight: 700;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--astro-blue));
    border-radius: 10px;
    position: relative;
    transition: width 0.5s ease;
}

.progress-fill.success {
    background: linear-gradient(90deg, var(--success-green), #00D48A);
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(50px); }
}

.progress-info {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Launch Details */
.launch-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row .value {
    color: var(--star-yellow);
    font-weight: 600;
}

/* Participate Button */
.btn-participate {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--astro-blue));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-participate:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.5);
}

.urgent-btn {
    background: linear-gradient(135deg, var(--danger-red), var(--rocket-orange));
    animation: urgent-btn-pulse 1s infinite;
}

@keyframes urgent-btn-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Upcoming Section */
.upcoming-section {
    padding: 80px 20px;
    background: rgba(107, 70, 193, 0.05);
    position: relative;
    z-index: 10;
}

.upcoming-list {
    max-width: 1200px;
    margin: 0 auto;
}

.upcoming-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.upcoming-card:hover {
    transform: translateX(10px);
    border-color: var(--astro-blue);
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
}

.upcoming-date {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--astro-blue));
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 80px;
}

.date-day {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
}

.date-month {
    font-size: 14px;
    text-transform: uppercase;
}

.upcoming-info {
    flex: 1;
}

.upcoming-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.upcoming-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.upcoming-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    font-size: 14px;
    color: var(--star-yellow);
}

.upcoming-actions {
    display: flex;
    gap: 10px;
}

.btn-whitelist, .btn-remind {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whitelist {
    background: var(--cosmic-purple);
    color: white;
    border: none;
}

.btn-whitelist:hover {
    background: var(--astro-blue);
    transform: scale(1.05);
}

.btn-remind {
    background: transparent;
    color: var(--star-yellow);
    border: 1px solid var(--star-yellow);
}

.btn-remind:hover {
    background: var(--star-yellow);
    color: var(--space-black);
}

/* Voting Section */
.voting-section {
    padding: 80px 20px;
    position: relative;
    z-index: 10;
}

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

.vote-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.vote-card:hover {
    transform: translateY(-5px);
    border-color: var(--star-yellow);
}

.vote-rank {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 900;
    color: var(--star-yellow);
    margin-bottom: 15px;
}

.vote-project {
    margin-bottom: 20px;
}

.vote-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.vote-project h3 {
    font-size: 20px;
}

.vote-bar {
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.vote-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--star-yellow), var(--rocket-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}

.vote-percent {
    color: var(--space-black);
    font-weight: 700;
    font-size: 14px;
}

.vote-count {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.btn-vote {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--star-yellow);
    color: var(--star-yellow);
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-vote:hover {
    background: var(--star-yellow);
    color: var(--space-black);
    transform: scale(1.05);
}

/* Metrics Section */
.metrics-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(67, 97, 238, 0.1));
    position: relative;
    z-index: 10;
}

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

.metric-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.metric-box:hover {
    transform: scale(1.05);
    border-color: var(--success-green);
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.3);
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.metric-number {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 900;
    color: var(--success-green);
    margin-bottom: 10px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1f3a, #0a0e27);
    border: 2px solid var(--cosmic-purple);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modal-appear 0.3s ease;
}

@keyframes modal-appear {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.modal-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.project-name-modal {
    text-align: center;
    font-size: 20px;
    color: var(--star-yellow);
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--astro-blue);
    box-shadow: 0 0 10px rgba(67, 97, 238, 0.3);
}

.input-hint {
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.allocation-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.alloc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alloc-row:last-child {
    border-bottom: none;
}

.alloc-row span:last-child {
    color: var(--star-yellow);
    font-weight: 600;
}

.btn-confirm {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--success-green), #00D48A);
    color: var(--space-black);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 245, 160, 0.5);
}

/* Footer */
.space-footer {
    background: linear-gradient(180deg, transparent, rgba(10, 14, 39, 0.8));
    padding: 60px 20px 20px;
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--star-yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--cosmic-purple);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .launches-grid {
        grid-template-columns: 1fr;
    }
    
    .upcoming-card {
        flex-direction: column;
        text-align: center;
    }
    
    .upcoming-actions {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links,
    .footer-social {
        justify-content: center;
    }
}