:root {
    --primary: #7b2cbf; /* Purple */
    --secondary: #ffde00; /* Yellow */
    --accent: #5a189a; /* Darker purple */
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray-bg: #f8f9fa;
    --gray-border: #e9ecef;
    --text-muted: #666;
    --glass: rgba(123, 44, 191, 0.03);
    --glass-border: rgba(123, 44, 191, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
}

.highlight {
    background: linear-gradient(270deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-text 5s ease infinite;
    position: relative;
    display: inline-block;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight-yellow {
    color: var(--dark);
    background: linear-gradient(120deg, var(--secondary) 0%, var(--secondary) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
}

/* --- Under Development Banner --- */
.dev-banner {
    background: var(--primary);
    color: var(--light);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 40px;
    z-index: 999;
    border-bottom: 1px solid var(--gray-border);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-a {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 8% 40px;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(123, 44, 191, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(255, 222, 0, 0.03), transparent);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Placeholder */
.video-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(123, 44, 191, 0.2);
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(123, 44, 191, 0.25);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--accent);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.4);
}

.cta-button i {
    font-size: 1.4rem;
}

/* --- Bio Section --- */
.about {
    padding: 100px 8%;
    background: var(--light);
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
}

.bio-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.skill-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--light);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 10px rgba(123, 44, 191, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(123, 44, 191, 0.2);
    background: var(--primary);
    color: var(--light);
}

/* --- Services Section --- */
.services {
    padding: 100px 8%;
    background-color: var(--gray-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light);
    border: 1px solid var(--gray-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(123, 44, 191, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Social Hub --- */
.social-hub {
    padding: 100px 8%;
    background-color: var(--light);
}

.glass-panel.wide {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light);
    border: 1px solid var(--gray-border);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(123, 44, 191, 0.08);
}

.hub-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    text-align: left;
    border-bottom: 1px solid var(--gray-border);
    padding-bottom: 30px;
}

.profile-pic {
    font-size: 4rem;
    color: var(--primary);
    background: rgba(123, 44, 191, 0.05);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hub-info h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.hub-info p {
    color: var(--text-muted);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.hub-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hub-link i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hub-link i.small {
    font-size: 0.8rem;
    margin-left: auto;
    opacity: 0.3;
}

.hub-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.2);
}

.hub-link:hover i {
    color: var(--light);
}

.tech-stack {
    background: var(--primary) !important;
}

.tech-stack h3, .tech-stack p {
    color: white !important;
}

.tech-stack .card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* --- Under Dev Message --- */
.under-dev-msg {
    padding: 100px 8%;
    display: flex;
    justify-content: center;
    background: var(--gray-bg);
}

.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(123, 44, 191, 0.15);
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    max-width: 850px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
}

.glass-panel i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.glass-panel h2 {
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    padding: 80px 8% 40px;
    background: var(--dark);
    color: var(--light);
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.footer-p {
    color: #888;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--light);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.contact-item:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

.copyright {
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hub-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}
