@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030a16; /* Deep Cyber Dark Background */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background Glowing Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
}

.blob-1 {
    width: 350px;
    height: 350px;
    background: #00e5ff;
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #0044ff;
    bottom: -50px;
    right: -100px;
}

/* Glassmorphism Card Centered */
.card {
    background: rgba(13, 20, 35, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 229, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 1.5rem;
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    border: 2px solid rgba(0, 229, 255, 0.4);
}

.subtitle {
    color: #00e5ff;
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, #ffffff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Typing Text Container */
.typing-container {
    font-size: 1.1rem;
    color: #a0c4ff;
    height: 28px;
    margin-bottom: 3rem;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2rem;
    background-color: #00e5ff;
    animation: blink 0.8s infinite;
    margin-left: 5px;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Social Section */
.social-section {
    width: 100%;
}

.social-section p {
    font-size: 0.95rem;
    color: #8892b0;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.03);
    border-radius: 50%;
    color: #a0c4ff;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.icon:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #ffffff;
    border-color: #00e5ff;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

/* Progress Bar */
.progress-container {
    width: 90%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #0044ff, #00e5ff);
    border-radius: 10px;
    animation: load 2s ease-out;
}

@keyframes load {
    from { width: 0%; }
    to { width: 65%; }
}