:root {
    --bg-color: #FFF5F8;
    --text-primary: #2D2426;
    --text-secondary: #6B5B60;
    --accent-primary: #FF00FF; /* Cyber Hot Pink */
    --accent-light: #FCE4EC;
    --accent-cyan: #00FFFF; /* Cyber Cyan */
    --accent-gradient: linear-gradient(135deg, #FF1493, #FF69B4);
    
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 182, 193, 0.5); /* Pastel Pink Border */
    --glass-shadow: 0 0 20px rgba(255, 182, 193, 0.4), 0 8px 32px 0 rgba(255, 182, 193, 0.2); /* Pastel Pink Glow */
    
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Caveat', cursive;
    --font-cyber: 'Space Mono', monospace;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image: 
        linear-gradient(rgba(255, 0, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Glassmorphism */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #F8BBD0;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #F48FB1;
    bottom: 100px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #E1BEE7;
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(10deg); }
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--glass-shadow);
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #FF69B4;
}

.dot {
    color: var(--text-primary);
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #FF69B4;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FF69B4;
}

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

/* Layout Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.avatar-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    padding: 5px;
    background: var(--accent-gradient);
    box-shadow: 0 15px 35px rgba(215, 138, 156, 0.3);
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.pronunciation-guide {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.handwritten {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: #FF69B4;
    transform: rotate(-2deg);
    display: inline-block;
}

.silly-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.tagline {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-bio {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px rgba(215, 138, 156, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(215, 138, 156, 0.4);
}

.secondary-btn {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.journey-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Work Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.project-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
}

.project-info {
    padding: 10px;
}

.project-tag {
    font-family: var(--font-cyber);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF69B4;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.project-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--accent-primary);
}

/* Contact Section */
.contact-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--accent-primary);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .tagline { font-size: 1.5rem; }
    .glass-nav {
        padding: 15px 20px;
        width: 95%;
    }
    .nav-links { gap: 15px; }
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Magic Cursor Sparkles */
.sparkle-heart {
    position: absolute;
    pointer-events: none;
    font-size: 1.2rem;
    animation: floatUp 1s ease-out forwards;
    z-index: 1000;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 20px), var(--ty, -50px)) scale(0.5) rotate(var(--rot, 20deg));
    }
}

/* Cyber Kawaii Glitch Effect & Glows */
.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.glitch::before {
    left: 3px;
    text-shadow: -1px 0 var(--accent-cyan);
    clip: rect(0, 0, 0, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -3px;
    text-shadow: -1px 0 var(--accent-primary);
    clip: rect(0, 0, 0, 0);
    animation: glitch-anim 3.5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
    0%, 70% { clip: rect(0, 0, 0, 0); }
    75% { clip: rect(35px, 9999px, 13px, 0); }
    80% { clip: rect(98px, 9999px, 55px, 0); }
    85% { clip: rect(12px, 9999px, 94px, 0); }
    90% { clip: rect(66px, 9999px, 39px, 0); }
    95% { clip: rect(44px, 9999px, 71px, 0); }
    100% { clip: rect(0, 0, 0, 0); }
}

.primary-btn:hover {
    box-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-cyan) !important;
    text-shadow: 0 0 5px white;
}
