@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0c; /* Deep Black/Dark Grey */
    color: #ffffff;
    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(80px);
    z-index: -1;
    opacity: 0.4;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #FFCC00;
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: #FF9900;
    bottom: -50px;
    left: -50px;
}

/* Glassmorphism Card */
.card {
    background: rgba(30, 30, 35, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 204, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Avatar Logo */
.avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFCC00, #FF9900);
    color: #000;
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
}

.subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Typing Text Area */
.typing-container {
    font-size: 1.2rem;
    color: #FFCC00; /* Yellow Text */
    font-weight: 600;
    height: 30px;
    margin-bottom: 3rem;
}

.cursor {
    display: inline-block;
    width: 3px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Social Icons */
.social-section p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.icon:hover {
    background: #FFCC00;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

/* Bottom Progress Bar */
.progress-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    width: 60%; /* Change this to show progress */
    background: linear-gradient(90deg, #FF9900, #FFCC00);
    border-radius: 5px;
}