/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for Japanese Anime Theme */
:root {
    --primary-color: #ff6b9d;
    --secondary-color: #a8e6cf;
    --accent-color: #ffd93d;
    --cute-pink: #ffb3d9;
    --soft-blue: #87ceeb;
    --sakura-pink: #ffb7c5;
    --text-dark: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-light: rgba(255, 255, 255, 0.95);
    --bg-dark: rgba(45, 55, 72, 0.95);
    --bg-gray: rgba(247, 250, 252, 0.9);
    --bg-overlay: rgba(255, 182, 193, 0.1);
    --border-color: #ffc0cb;
    --shadow-sm: 0 2px 4px 0 rgba(255, 107, 157, 0.15);
    --shadow-md: 0 6px 12px -2px rgba(255, 107, 157, 0.25);
    --shadow-lg: 0 15px 30px -5px rgba(255, 107, 157, 0.3);
    --shadow-xl: 0 25px 50px -12px rgba(255, 107, 157, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--cute-pink));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--sakura-pink));
    --gradient-soft: linear-gradient(135deg, var(--soft-blue), var(--secondary-color));
    --bg-image: url('https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?w=1920&h=1080&fit=crop');
}

/* Dark Theme Variables - Japanese Anime Style */
[data-theme="dark"] {
    --text-dark: #f7fafc;
    --text-light: #e2e8f0;
    --bg-light: rgba(26, 32, 44, 0.95);
    --bg-dark: rgba(17, 24, 39, 0.95);
    --bg-gray: rgba(45, 55, 72, 0.9);
    --bg-overlay: rgba(139, 92, 246, 0.1);
    --border-color: #805ad5;
    --primary-color: #ed64a6;
    --secondary-color: #9f7aea;
    --accent-color: #fbd38d;
}

/* Base Styles - Japanese Anime Theme */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-image) center/cover fixed no-repeat;
    background-attachment: fixed;
    position: relative;
    transition: all 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 182, 193, 0.3) 0%, 
        rgba(255, 192, 203, 0.2) 25%, 
        rgba(173, 216, 230, 0.2) 50%, 
        rgba(255, 218, 185, 0.2) 75%, 
        rgba(221, 160, 221, 0.3) 100%);
    backdrop-filter: blur(2px);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 230, 207, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Typography - Kawaii Style */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Navigation - Anime Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 107, 157, 0.1) 0%, 
        rgba(168, 230, 207, 0.1) 50%, 
        rgba(255, 217, 61, 0.1) 100%);
    z-index: -1;
}

[data-theme="dark"] .navbar {
    background: rgba(26, 32, 44, 0.9);
    border-bottom: 2px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.logo-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: bold;
}

.logo-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--bg-overlay);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.theme-toggle {
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.theme-toggle:hover {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Anime Style */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 192, 203, 0.4) 0%, 
        rgba(173, 216, 230, 0.3) 25%,
        rgba(255, 218, 185, 0.3) 50%,
        rgba(221, 160, 221, 0.3) 75%,
        rgba(255, 182, 193, 0.4) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: var(--shadow-sm);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 4px rgba(255, 107, 157, 0.3);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    font-size: 1.2rem;
}

.social-link span {
    font-size: 0.7rem;
    margin-top: 4px;
    font-weight: 600;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

.code-editor {
    width: 100%;
    max-width: 450px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--border-color);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.code-editor:hover {
    transform: rotate(0deg) scale(1.02);
}

.editor-header {
    background: var(--gradient-primary);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.editor-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.editor-title {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
}

.editor-content {
    padding: 20px;
    background: #2d3748;
    color: #e2e8f0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    overflow-x: auto;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.tech-icon.react {
    top: 10%;
    right: -10%;
    background: linear-gradient(135deg, #61dafb, #21d4fd);
    color: white;
    animation: float 6s ease-in-out infinite;
}

.tech-icon.node {
    top: 60%;
    right: 10%;
    background: linear-gradient(135deg, #68a063, #8cc84b);
    color: white;
    animation: float 8s ease-in-out infinite reverse;
}

.tech-icon.python {
    bottom: 20%;
    right: -5%;
    background: linear-gradient(135deg, #3776ab, #ffd43b);
    color: white;
    animation: float 7s ease-in-out infinite;
}

.tech-icon.js {
    top: 40%;
    left: -15%;
    background: linear-gradient(135deg, #f7df1e, #ffda44);
    color: #2d3748;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-weight: 600;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: pulse 2s infinite;
}

/* About Section - Anime Theme */
.about {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.85) 0%, 
        rgba(255, 192, 203, 0.8) 25%,
        rgba(173, 216, 230, 0.8) 50%,
        rgba(255, 218, 185, 0.8) 75%,
        rgba(221, 160, 221, 0.85) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about::after {
    content: '🌸 ✨ 💖 🌟 🎀 🦄 🌙 ⭐ 🍀 💫';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kawaii-gradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    letter-spacing: 2px;
}

@keyframes kawaii-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: linear-gradient(90deg, #ff6b9d, #ffd93d, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    border-radius: 4px;
    animation: kawaii-gradient 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

.section-title::before {
    content: '✨🌸✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: kawaii-bounce 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes kawaii-bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px) scale(1.2); 
        opacity: 1; 
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* About Content - Kawaii Style */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 192, 203, 0.6);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.about-text::before {
    content: '💖';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    animation: kawaii-pulse 2s ease-in-out infinite;
}

@keyframes kawaii-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.2) rotate(5deg); 
        opacity: 1; 
    }
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    position: relative;
}

.about-intro h3::after {
    content: '🌟';
    position: absolute;
    right: -30px;
    top: 0;
    animation: twinkle 2s ease-in-out infinite;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expertise-areas h4,
.certifications h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    position: relative;
}

.expertise-areas h4::before {
    content: '🎯';
    margin-right: 10px;
}

.certifications h4::before {
    content: '🏆';
    margin-right: 10px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 182, 193, 0.2);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.expertise-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
    background: rgba(255, 182, 193, 0.3);
}

.expertise-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.expertise-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.expertise-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(168, 230, 207, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(168, 230, 207, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(168, 230, 207, 0.3);
    background: rgba(168, 230, 207, 0.4);
}

.cert-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(168, 230, 207, 0.2);
}

.project-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Cute floating particles */
.hero::after,
.about::after,
.skills::after,
.projects::after {
    content: '🌸 ✨ 💖 🌟 🎀';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

/* Status badges with cute colors */
.status-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.live {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.status-badge.development {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

/* Enhanced buttons with kawaii style */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '💫';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn:hover::after {
    left: calc(100% + 10px);
    opacity: 1;
}

/* Enhanced skill bars with kawaii colors */
.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-gray);
    border-radius: 4px;
    overflow: hidden;
    margin: 8px 0;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease;
    position: relative;
}

.skill-progress::after {
    content: '✨';
    position: absolute;
    right: -10px;
    top: -5px;
    font-size: 0.8rem;
    animation: twinkle 2s ease-in-out infinite;
}

/* About Visual - Kawaii Style */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.skills-radar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    border: 3px solid rgba(255, 217, 61, 0.6);
    box-shadow: 0 20px 40px rgba(255, 217, 61, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}

.skills-radar::before {
    content: '🌟';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 217, 61, 0.3);
    animation: kawaii-spin 3s linear infinite;
}

@keyframes kawaii-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.radar-chart {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    position: relative;
    background: conic-gradient(
        from 0deg,
        rgba(255, 107, 157, 0.3) 0deg,
        rgba(255, 217, 61, 0.3) 60deg,
        rgba(168, 230, 207, 0.3) 120deg,
        rgba(255, 182, 193, 0.3) 180deg,
        rgba(173, 216, 230, 0.3) 240deg,
        rgba(255, 107, 157, 0.3) 300deg,
        rgba(255, 107, 157, 0.3) 360deg
    );
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 157, 0.4);
    animation: kawaii-rotate 10s linear infinite;
}

@keyframes kawaii-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.skill-point {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    animation: kawaii-pulse 2s ease-in-out infinite;
}

.skill-point.frontend { top: 10px; left: 50%; transform: translateX(-50%); }
.skill-point.backend { top: 40%; right: 10px; }
.skill-point.devops { bottom: 40%; right: 10px; }
.skill-point.database { bottom: 10px; left: 50%; transform: translateX(-50%); }
.skill-point.mobile { bottom: 40%; left: 10px; }
.skill-point.testing { top: 40%; left: 10px; }

.achievement-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 3px solid rgba(173, 216, 230, 0.6);
    box-shadow: 0 15px 30px rgba(173, 216, 230, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 216, 230, 0.2), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(173, 216, 230, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(173, 216, 230, 0.3);
    animation: kawaii-bounce 2s ease-in-out infinite;
}

.stat-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: var(--gradient-soft);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Experience Section - Kawaii Anime Theme */
.experience {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1551269901-5c5e14c25df7?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 183, 197, 0.88) 0%, 
        rgba(246, 211, 101, 0.85) 25%,
        rgba(168, 230, 207, 0.85) 50%,
        rgba(255, 218, 185, 0.85) 75%,
        rgba(221, 160, 221, 0.88) 100%);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.experience .container {
    position: relative;
    z-index: 2;
}

.experience::after {
    content: '⭐ 🌸 💼 ✨ 🏆 🎀 🌙 💫 🎯 🌟';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.8rem;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.experience .section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(45deg, #ff6b9d, #f6d365, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kawaii-gradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    letter-spacing: 2px;
}

.experience .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #ff6b9d, #f6d365, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    border-radius: 4px;
    animation: kawaii-gradient 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

.experience .section-title::before {
    content: '💼✨💼';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    animation: kawaii-bounce 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Timeline - Kawaii Style */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, 
        #ff6b9d 0%, 
        #f6d365 25%, 
        #a8e6cf 50%, 
        #ffdab9 75%, 
        #dda0dd 100%);
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
    animation: kawaii-pulse 3s ease-in-out infinite;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 3rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    width: 25px;
    height: 25px;
    background: white;
    border: 4px solid #ff6b9d;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 107, 157, 0.2);
    animation: kawaii-pulse 2s ease-in-out infinite;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -16px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -16px;
}

.timeline-marker::before {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    animation: twinkle 2s ease-in-out infinite;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.8s ease;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.25);
    border-color: #ff6b9d;
}

.timeline-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ff6b9d, #f6d365);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.company {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #a8e6cf;
    margin-bottom: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.duration {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #ff6b9d, #f6d365);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    font-family: 'Inter', sans-serif;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-start;
}

.timeline-item:nth-child(odd) .technologies {
    justify-content: flex-end;
}

.technologies span {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(168, 230, 207, 0.1));
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-family: 'Inter', sans-serif;
}

.technologies span:hover {
    background: linear-gradient(135deg, #ff6b9d, #a8e6cf);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

/* Kawaii decorative elements */
.timeline-item:nth-child(1) .timeline-content::after {
    content: '🚀';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    animation: kawaii-bounce 2s ease-in-out infinite;
}

.timeline-item:nth-child(2) .timeline-content::after {
    content: '⚡';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(246, 211, 101, 0.3);
    animation: kawaii-spin 3s linear infinite;
}

.timeline-item:nth-child(3) .timeline-content::after {
    content: '🎯';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.3);
    animation: kawaii-pulse 2s ease-in-out infinite;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: var(--bg-gray);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.skill-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-item {
    padding: 8px 16px;
    background: var(--bg-gray);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    padding: 4px 12px;
    background: var(--bg-gray);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-gray);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Testimonials Section - Kawaii Japanese Anime Theme */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.92) 0%, 
        rgba(255, 192, 203, 0.88) 25%,
        rgba(173, 216, 230, 0.88) 50%,
        rgba(255, 218, 185, 0.88) 75%,
        rgba(221, 160, 221, 0.92) 100%);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials::after {
    content: '💝 🌸 ⭐ 💖 🎀 🦄 🌙 ✨ 💫 🌟';
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.testimonials .section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 800;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kawaii-gradient 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
    letter-spacing: 2px;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #ff6b9d, #ffd93d, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    border-radius: 4px;
    animation: kawaii-gradient 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
}

.testimonials .section-title::before {
    content: '💝✨💝';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    animation: kawaii-bounce 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2.5rem;
    border: 3px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.8s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(1deg) scale(1.02);
    box-shadow: 0 35px 70px rgba(255, 107, 157, 0.3);
    border-color: #ff6b9d;
}

.testimonial-card:nth-child(1)::after {
    content: '⭐';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    animation: kawaii-pulse 2s ease-in-out infinite;
}

.testimonial-card:nth-child(2)::after {
    content: '💝';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 217, 61, 0.3);
    animation: kawaii-spin 3s linear infinite;
}

.testimonial-card:nth-child(3)::after {
    content: '🌟';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(168, 230, 207, 0.3);
    animation: kawaii-bounce 2s ease-in-out infinite;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b9d, #ffd93d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
    animation: kawaii-pulse 3s ease-in-out infinite;
}

.quote-icon i {
    font-size: 1.5rem;
    color: white;
    animation: kawaii-bounce 2s ease-in-out infinite;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 107, 157, 0.3);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 3rem;
    color: rgba(255, 107, 157, 0.3);
    font-family: serif;
    line-height: 1;
}

.rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating i {
    font-size: 1.2rem;
    color: #ffd93d;
    animation: twinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.rating i:nth-child(1) { --i: 0; }
.rating i:nth-child(2) { --i: 1; }
.rating i:nth-child(3) { --i: 2; }
.rating i:nth-child(4) { --i: 3; }
.rating i:nth-child(5) { --i: 4; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 157, 0.4);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d, #a8e6cf, #ff6b9d);
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: kawaii-gradient 4s ease-in-out infinite;
}

.author-avatar:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.4);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    flex: 1;
    position: relative;
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, #ff6b9d, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.author-info span {
    font-size: 1rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.company-logo {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.3), rgba(255, 217, 61, 0.3));
    border: 2px solid rgba(168, 230, 207, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    backdrop-filter: blur(5px);
    animation: kawaii-pulse 3s ease-in-out infinite;
}

.company-logo i {
    font-size: 1rem;
    color: var(--secondary-color);
    animation: kawaii-bounce 2s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer - Kawaii Japanese Anime Theme */
.footer {
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.95) 0%, 
        rgba(255, 192, 203, 0.9) 25%,
        rgba(173, 216, 230, 0.9) 50%,
        rgba(255, 218, 185, 0.9) 75%,
        rgba(221, 160, 221, 0.95) 100%);
    background-image: url('https://images.unsplash.com/photo-1629197520309-86996ff3f25a?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 0 2rem 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 192, 203, 0.92) 0%, 
        rgba(173, 216, 230, 0.88) 25%,
        rgba(255, 218, 185, 0.88) 50%,
        rgba(221, 160, 221, 0.92) 75%,
        rgba(255, 182, 193, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.footer::after {
    content: '🌸 ✨ 💖 🌟 🎀 🦄 🌙 ⭐ 💫 🍀';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.footer-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid rgba(255, 107, 157, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-info::before {
    content: '💖';
    position: absolute;
    top: -15px;
    right: 30px;
    font-size: 2rem;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    animation: kawaii-pulse 2s ease-in-out infinite;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b9d, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kawaii-gradient 3s ease-in-out infinite;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b9d, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(168, 230, 207, 0.2));
    border: 2px solid rgba(255, 107, 157, 0.4);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.footer-social .social-link:hover::before {
    left: 100%;
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, #ff6b9d, #a8e6cf);
    color: white;
    transform: translateY(-5px) rotate(5deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 107, 157, 0.4);
    border-color: #ffd93d;
}

.footer-social .social-link i {
    font-size: 1.3rem;
    animation: kawaii-bounce 2s ease-in-out infinite;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(173, 216, 230, 0.4);
    box-shadow: 0 15px 30px rgba(173, 216, 230, 0.2);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
}

.footer-column::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ffd93d, #a8e6cf);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column:hover::before {
    opacity: 1;
}

.footer-column:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(173, 216, 230, 0.3);
}

.footer-column h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b9d, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.footer-column h4::after {
    content: '✨';
    position: absolute;
    right: -25px;
    top: 0;
    font-size: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

.footer-column a {
    display: block;
    padding: 0.8rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
    padding-left: 1rem;
}

.footer-column a::before {
    content: '🌸';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-column a:hover {
    color: #ff6b9d;
    background: rgba(255, 107, 157, 0.1);
    transform: translateX(10px);
    padding-left: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    margin: 0 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-text p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
    background: linear-gradient(45deg, #ff6b9d, #a8e6cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.2));
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #10b981;
    backdrop-filter: blur(5px);
    animation: kawaii-pulse 3s ease-in-out infinite;
}

.footer-status .status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Kawaii Animations */
@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-8px) translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Cute loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--bg-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top::before {
    content: '🚀';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.scroll-top:hover::before {
    opacity: 1;
    top: -40px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Kawaii form elements */
input, textarea, select {
    border: 2px solid var(--border-color) !important;
    border-radius: 15px !important;
    background: var(--bg-light) !important;
    transition: all 0.3s ease !important;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1) !important;
    transform: scale(1.02) !important;
}

/* Cute notification styles */
.notification {
    border-radius: 15px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.notification::before {
    content: '🎉';
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Enhanced tech icons with kawaii style */
.tech-item {
    background: var(--bg-light);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item:hover::before {
    opacity: 1;
}

.tech-item:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-light);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin: 0;
        border-radius: 15px;
    }

    .profile-card {
        width: 280px;
        height: 280px;
    }

    /* Experience Section Mobile */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding: 0 0 0 4rem;
    }

    .timeline-marker {
        left: 18px !important;
        right: auto !important;
    }

    .technologies {
        justify-content: flex-start !important;
    }

    /* Testimonials Section Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonials .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .profile-card {
        width: 250px;
        height: 250px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
}