/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap');

:root {
    --primary: #8A2387;
    --secondary: #E94057;
    --accent: #F27121;
    --bg-dark: #0f172a;
    --text-white: #ffffff;
    --linkedin: #0077b5;
    --github: #333;
    --twitter: #1DA1F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    background: radial-gradient(circle at top left, #1e293b, #0f172a);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text-white);
    position: relative;
}

/* --- BACKGROUND PARTICLES --- */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    animation: floatParticle 20s infinite linear;
}

.p1 { width: 80px; height: 80px; top: 10%; left: 10%; animation-duration: 25s; }
.p2 { width: 150px; height: 150px; top: 20%; right: 15%; background: rgba(233, 64, 87, 0.15); animation-duration: 30s; }
.p3 { width: 100px; height: 100px; bottom: 15%; left: 20%; background: rgba(138, 35, 135, 0.15); animation-duration: 22s; }
.p4 { width: 50px; height: 50px; bottom: 25%; right: 10%; animation-duration: 18s; }

@keyframes floatParticle {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* --- GLASS CARD --- */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    text-align: center;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* --- LOGO --- */
.logo-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(233, 64, 87, 0.4);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* --- TEXT --- */
.welcome-text {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

h1.name-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.name-highlight {
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-container {
    height: 30px;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

.cursor {
    animation: blink 1s infinite;
    color: white;
}

/* --- SOCIAL BUTTONS --- */
.social-section {
    margin-bottom: 2rem;
}

.social-section p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn:hover {
    transform: translateY(-5px);
}

.social-btn.linkedin:hover { background: var(--linkedin); box-shadow: 0 0 15px var(--linkedin); }
.social-btn.github:hover { background: var(--github); box-shadow: 0 0 15px var(--github); }
.social-btn.twitter:hover { background: black; box-shadow: 0 0 15px rgba(255,255,255,0.5); }

/* --- CTA BUTTON --- */
.cta-button {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: white;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 2rem;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(242, 113, 33, 0.6);
}

/* --- LOADER --- */
.loader-track {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-fill {
    height: 100%;
    width: 30%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: absolute;
    animation: loadingSlide 2s infinite ease-in-out;
}

/* --- KEYFRAMES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes loadingSlide {
    0% { left: -40%; }
    50% { left: 40%; width: 50%; }
    100% { left: 100%; width: 20%; }
}

/* --- MOBILE --- */
@media (max-width: 600px) {
    .glass-card { padding: 2rem; }
    h1.name-title { font-size: 2rem; }
    .social-btn { width: 40px; height: 40px; font-size: 1rem; }
}
/* Find this line in style.css and update it */
.social-btn.twitter:hover { 
    background: #1DA1F2; /* Classic Twitter Blue */
    box-shadow: 0 0 15px #1DA1F2; 
    border-color: #1DA1F2;
}