:root {
    --bg-color: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #444444;
    --card-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --accent-color: #6c63ff;
    --accent-2: #ff6584;
    --accent-3: #43e97b;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(108, 99, 255, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* ── Animated Motion Grid Background ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: #f8f8ff;
    background-image:
        linear-gradient(rgba(108, 99, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 12s linear infinite;
}

@keyframes gridMove {
    0%   { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Soft blobs */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    animation: blobFloat 15s ease-in-out infinite alternate;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 80px) scale(1.1); }
}

/* ── Navbar ── */
.navbar {
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.25);
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #6c63ff, #ff6584);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #6c63ff, #ff6584);
    border-radius: 2px;
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.page-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    animation: fadeIn 0.8s ease-out;
}

/* ── Home Section ── */
.hero-content {
    text-align: center;
}

.name {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #6c63ff 0%, #ff6584 50%, #43e97b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(108, 99, 255, 0.15));
}

.subtitle {
    font-size: 1.6rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, #6c63ff, #ff6584);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(108, 99, 255, 0.5);
}

/* ── Section Titles ── */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-align: center;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6c63ff, #ff6584);
    border-radius: 4px;
    margin: 0.6rem auto 0;
}

/* ── Glass Cards ── */
.glass-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transition: box-shadow 0.3s, transform 0.3s;
}

.glass-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* ── About Section ── */
.about-card {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
    text-align: center;
}

.meta-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 99, 255, 0.07);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(108, 99, 255, 0.15);
    color: var(--text-primary);
}

.meta-item i {
    color: var(--accent-color);
}

.bio {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f0f0ff;
    border: 1px solid rgba(108, 99, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

.email-icon:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* ── Skills Section ── */
.skills-card {
    text-align: center;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.6rem;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.tool-badge:hover {
    background: #f5f3ff;
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(108, 99, 255, 0.15);
}

.tool-icon {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.pr-icon {
    background: linear-gradient(135deg, #00005e, #333399);
    color: #ff8aff;
    border: 1px solid #ff8aff;
}

.ae-icon {
    background: linear-gradient(135deg, #00005e, #333399);
    color: #9999ff;
    border: 1px solid #9999ff;
}

/* ── Work / Portfolio Section ── */
.video-grid {
    column-count: 2;
    column-gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
}

.video-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    width: 100%;
    display: inline-block;
}

.video-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
    border-color: rgba(108, 99, 255, 0.2);
}

.video-item video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .name { font-size: 3.2rem; }
    .subtitle { font-size: 1.2rem; }

    .container {
        padding-top: 8rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .nav-links { gap: 1.5rem; }

    .video-grid {
        column-count: 1;
    }
}
