/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    /* Modern dark gradient background */
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Container & Animation */
.container {
    padding: 2rem;
    max-width: 650px;
    /* Smooth fade-in effect on load */
    animation: fadeIn 1.2s ease-out forwards;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

p {
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Accent dot with a pulsing animation */
.dot {
    color: #00d2ff;
    animation: pulse 1.5s infinite ease-in-out;
}

/* Social Links styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d2ff;
    color: #00d2ff;
    transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1.1rem;
    }
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}