* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Animated stars background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    box-shadow: 
        100px 200px white,
        200px 100px white,
        300px 300px white,
        400px 150px white,
        500px 250px white,
        150px 350px white,
        250px 50px white,
        350px 200px white,
        450px 300px white,
        550px 100px white;
}

.stars::after {
    top: 40%;
    left: 60%;
    animation-delay: 1.5s;
    box-shadow: 
        80px 180px white,
        180px 80px white,
        280px 280px white,
        380px 130px white,
        480px 230px white,
        130px 330px white,
        230px 30px white,
        330px 180px white,
        430px 280px white,
        530px 80px white;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

.logo {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.logo i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ffd700;
    animation: rocket 2s ease-in-out infinite;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.main-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.construction-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gear {
    margin: 0 1rem;
    font-size: 2rem;
    color: #ffd700;
}

.gear1 i {
    animation: rotate 3s linear infinite;
}

.gear2 i {
    animation: rotate 3s linear infinite reverse;
    animation-delay: 0.5s;
}

.gear3 i {
    animation: rotate 3s linear infinite;
    animation-delay: 1s;
}

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

.progress-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.progress-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ffed4a);
    border-radius: 4px;
    width: 0%;
    animation: progressFill 2s ease-out 1s forwards;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes progressFill {
    to { width: 50%; }
}

.notify-section {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.notify-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-form input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.email-form button {
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4a);
    color: #333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 1.4s both;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Ensure all text elements are selectable */
h1, h2, h3, p, span, div {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .email-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo i {
        font-size: 3rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
    
    .construction-animation .gear {
        margin: 0 0.5rem;
        font-size: 1.5rem;
    }
}
