* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background: #000000;
    position: relative;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #0A0F1C 0%, #1A0B2E 35%, #0B1426 70%, #000000 100%);
    z-index: -3;
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #FFD700, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, #4A90E2, transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Nebula Overlay */
.nebula-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(61, 43, 86, 0.3) 25%, 
        transparent 50%, 
        rgba(74, 144, 226, 0.2) 75%, 
        transparent 100%);
    z-index: -2;
    animation: nebulaDrift 20s linear infinite;
}

@keyframes nebulaDrift {
    0% { transform: translateX(-100px) translateY(-50px); }
    100% { transform: translateX(100px) translateY(50px); }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.constellation-dot {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #FFD700 0%, #FF8C00 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px #FFD700;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(74, 144, 226, 0.2));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cosmic-container {
    max-width: 800px;
    padding: 0 20px;
}

.main-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF 0%, #FFD700 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    background: linear-gradient(45deg, #E6F3FF, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    background: linear-gradient(45deg, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card {
    margin-bottom: 120px;
    position: relative;
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Time Value */
.time-value {
    background: radial-gradient(ellipse at center, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(61, 43, 86, 0.1) 50%, 
        transparent 100%);
}

.galaxy-spiral {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: conic-gradient(from 0deg, 
        #FFFFFF 0%, 
        #FFD700 25%, 
        #3D2B56 50%, 
        #FFD700 75%, 
        #FFFFFF 100%);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    opacity: 0.6;
}

.pulsar-animation {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #4A90E2 0%, #FFD700 50%, transparent 100%);
    border-radius: 50%;
    animation: pulsar 3s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulsar {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Trust Value */
.trust-value {
    background: radial-gradient(ellipse at center, 
        rgba(74, 144, 226, 0.15) 0%, 
        rgba(11, 20, 38, 0.1) 70%, 
        transparent 100%);
}

.gravitational-well {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, 
        rgba(230, 243, 255, 0.3) 0%, 
        rgba(74, 144, 226, 0.2) 50%, 
        transparent 100%);
    animation: gravityWave 8s ease-in-out infinite;
}

@keyframes gravityWave {
    0%, 100% { transform: translateX(-50%) scaleY(1); }
    50% { transform: translateX(-50%) scaleY(1.2); }
}

/* Importance Value */
.importance-value {
    background: radial-gradient(ellipse at center, 
        rgba(255, 140, 0, 0.1) 0%, 
        rgba(220, 20, 60, 0.1) 50%, 
        transparent 100%);
}

.supernova-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 215, 0, 0.2) 15%, 
        rgba(255, 140, 0, 0.2) 35%, 
        rgba(220, 20, 60, 0.1) 65%, 
        transparent 100%);
    border-radius: 50%;
    animation: supernova 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes supernova {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* Value Content */
.value-content {
    position: relative;
    z-index: 2;
}

.value-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.time-value .value-title {
    background: linear-gradient(45deg, #FFD700, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-value .value-title {
    background: linear-gradient(45deg, #4A90E2, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.importance-value .value-title {
    background: linear-gradient(45deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.launch-pad {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.launch-button {
    position: relative;
    padding: 20px 50px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #1E3A8A, #7C3AED);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.launch-button:hover {
    background: linear-gradient(45deg, #F59E0B, #EA580C);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    animation: buttonGlow 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 150px 150px, rgba(74, 144, 226, 0.3), transparent),
        radial-gradient(1px 1px at 250px 100px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 300px 300px;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(-10vw); }
    100% { transform: translateY(-100vh) translateX(10vw); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .value-card {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
    
    .galaxy-spiral,
    .supernova-burst {
        width: 100px;
        height: 100px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
    
    .section-title,
    .cta-title {
        font-size: 2rem;
    }
}
