/* --- Basic Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #1a1a1a;
    --text-color: #f4f4f4;
    --secondary-text-color: #cccccc;
    --accent-color: #00bfff; /* Deep Sky Blue */
    --footer-color: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Main Container & Centering --- */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 0 20px;
}

/* --- Content Styling --- */
.launch-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* --- Social Links --- */
.social-links p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* --- Footer --- */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: var(--footer-color);
    font-size: 0.8rem;
}

/* --- Animation --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1rem;
    }

    .launch-icon {
        font-size: 3rem;
    }
}