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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo */
.logo h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Main Message */
.main-message h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.main-message p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.progress-bar {
    background: #e0e0e0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    border-radius: 4px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

.progress-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Launch Info */
.launch-info {
    margin-bottom: 40px;
}

.launch-date {
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    color: #667eea;
    font-weight: 500;
    gap: 10px;
}

.launch-date i {
    font-size: 1.1rem;
}

/* Email Subscription */
.subscription {
    margin-bottom: 40px;
}

.subscription h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.email-form button {
    padding: 15px 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

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

.subscription-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Contact Info */
.contact-info p {
    color: #666;
    font-size: 0.9rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

.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: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

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

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

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Eye Candy Animations */
.eye-candy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Particle System */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 50%; animation-delay: 1.5s; animation-duration: 11s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; animation-duration: 6s; }
.particle:nth-child(7) { left: 70%; animation-delay: 0.8s; animation-duration: 8.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 1.8s; animation-duration: 7.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 2.8s; animation-duration: 9.5s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 10.5s; }
.particle:nth-child(11) { left: 25%; animation-delay: 0.3s; animation-duration: 8.8s; }
.particle:nth-child(12) { left: 35%; animation-delay: 1.3s; animation-duration: 7.8s; }
.particle:nth-child(13) { left: 45%; animation-delay: 2.3s; animation-duration: 9.8s; }
.particle:nth-child(14) { left: 55%; animation-delay: 0.7s; animation-duration: 6.8s; }
.particle:nth-child(15) { left: 65%; animation-delay: 1.7s; animation-duration: 11.8s; }

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateX(50px) scale(1);
    }
    100% {
        top: -10%;
        opacity: 0;
        transform: translateX(100px) scale(0);
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    opacity: 0.3;
    animation: shapeRotate 15s linear infinite;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(102, 126, 234, 0.4);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.square {
    width: 25px;
    height: 25px;
    background: rgba(118, 75, 162, 0.4);
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

.hexagon {
    width: 20px;
    height: 11.55px;
    background: rgba(102, 126, 234, 0.4);
    position: relative;
    top: 80%;
    left: 30%;
    animation-delay: 9s;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 5.77px solid rgba(102, 126, 234, 0.4);
}

.hexagon:after {
    top: 100%;
    border-top: 5.77px solid rgba(102, 126, 234, 0.4);
}

.diamond {
    width: 20px;
    height: 20px;
    background: rgba(118, 75, 162, 0.4);
    transform: rotate(45deg);
    top: 30%;
    right: 60%;
    animation-delay: 12s;
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg) translateX(0) scale(1);
    }
    25% {
        transform: rotate(90deg) translateX(20px) scale(1.2);
    }
    50% {
        transform: rotate(180deg) translateX(0) scale(0.8);
    }
    75% {
        transform: rotate(270deg) translateX(-20px) scale(1.1);
    }
    100% {
        transform: rotate(360deg) translateX(0) scale(1);
    }
}

/* Light Rays */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    transform-origin: bottom center;
    animation: rayRotate 20s linear infinite;
}

.ray:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.ray:nth-child(2) { transform: rotate(60deg); animation-delay: 3s; }
.ray:nth-child(3) { transform: rotate(120deg); animation-delay: 6s; }
.ray:nth-child(4) { transform: rotate(180deg); animation-delay: 9s; }
.ray:nth-child(5) { transform: rotate(240deg); animation-delay: 12s; }
.ray:nth-child(6) { transform: rotate(300deg); animation-delay: 15s; }

@keyframes rayRotate {
    0% {
        transform: rotate(var(--start-rotation, 0deg)) scaleY(0);
        opacity: 0;
    }
    25% {
        transform: rotate(calc(var(--start-rotation, 0deg) + 90deg)) scaleY(1);
        opacity: 1;
    }
    50% {
        transform: rotate(calc(var(--start-rotation, 0deg) + 180deg)) scaleY(0.5);
        opacity: 0.7;
    }
    75% {
        transform: rotate(calc(var(--start-rotation, 0deg) + 270deg)) scaleY(1);
        opacity: 1;
    }
    100% {
        transform: rotate(calc(var(--start-rotation, 0deg) + 360deg)) scaleY(0);
        opacity: 0;
    }
}

/* Orbital System */
.orbital-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-duration: 20s;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-duration: 50s;
}

.planet {
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 50%;
    margin-left: -5px;
}

.planet-1 {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #667eea, #764ba2);
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

.planet-2 {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ff6b6b, #ee5a6f);
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.6);
}

.planet-3 {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #4ecdc4, #44a08d);
    box-shadow: 0 0 18px rgba(78, 205, 196, 0.6);
}

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

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        transparent 100%);
    animation: waveMove 15s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.7;
}

.wave-2 {
    animation-delay: 5s;
    opacity: 0.5;
    animation-duration: 20s;
}

.wave-3 {
    animation-delay: 10s;
    opacity: 0.3;
    animation-duration: 25s;
}

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

/* Success Message */
.success-message {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .main-message h2 {
        font-size: 1.5rem;
    }
    
    .main-message p {
        font-size: 1rem;
    }
    
    .launch-date {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}