:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --secondary-color: #0f0f1a;
    --accent-color: #7c3aed;
    --accent-pink: #ec4899;
    --accent-green: #22c55e;
    --bg-dark: #0a0a12;
    --bg-card: #16162a;
    --bg-card-hover: #1e1e3a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-light: #71717a;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
}

@keyframes textGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    pointer-events: auto;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
}

html, body {
    user-select: auto;
    -webkit-user-select: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 9px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.nav-cta {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-primary);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text .greeting {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: greetingPulse 2s ease-in-out infinite;
}

@keyframes greetingPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(0, 212, 255, 0.2);
    }
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 40%, #ff6b6b 80%, #fdcb6e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textGlow 3s ease-in-out infinite;
}

.hero-text h1::after {
    content: 'Mr.King';
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 40%, #ff6b6b 80%, #fdcb6e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(15px);
    opacity: 0.4;
    z-index: -1;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 40px rgba(124, 58, 237, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 60px rgba(124, 58, 237, 0.4));
    }
}

.subtitle {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.6;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-block;
    backdrop-filter: blur(10px);
}

.description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 35px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.badge.tech {
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
}

.badge.design {
    border-color: rgba(124, 58, 237, 0.3);
    color: #a78bfa;
}

.badge.code {
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.btn.large {
    padding: 18px 50px;
    font-size: 16px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-wrapper {
    position: relative;
}

.avatar {
    width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 8px solid #2a2a3a;
    box-shadow: 
        0 0 0 3px #1a1a2a,
        0 0 0 12px #3a3a4a,
        0 0 0 13px #2a2a3a,
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
    transition: all 0.5s ease;
    animation: photoEntrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decoration-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    opacity: 0.15;
    z-index: -1;
    filter: blur(40px);
    pointer-events: none;
}

.avatar-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(124, 58, 237, 0.1) 40%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(5deg);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes photoFloat {
    0%, 100% {
        transform: rotate(-1deg) translateY(0);
    }
    25% {
        transform: rotate(0.5deg) translateY(-5px);
    }
    50% {
        transform: rotate(-0.5deg) translateY(0);
    }
    75% {
        transform: rotate(1deg) translateY(5px);
    }
}

@keyframes photoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px) rotate(-10deg);
        filter: blur(10px);
    }
    30% {
        opacity: 1;
        transform: scale(1.15) translateY(-20px) rotate(5deg);
        filter: blur(0);
    }
    50% {
        transform: scale(0.95) translateY(10px) rotate(-2deg);
    }
    70% {
        transform: scale(1.02) translateY(-5px) rotate(1deg);
    }
    85% {
        transform: scale(0.99) translateY(2px) rotate(-0.5deg);
    }
    100% {
        transform: scale(1) translateY(0) rotate(-1deg);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes starPop {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 230, 109, 0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
        text-shadow: 0 0 25px rgba(255, 230, 109, 0.9), 0 0 40px rgba(255, 230, 109, 0.5);
    }
}

.avatar-wrapper {
    position: relative;
    transition: transform 0.5s ease-out;
    overflow: visible;
}

.confetti-container {
    position: absolute;
    top: -100px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 200px);
    pointer-events: none;
    z-index: 10;
}

.confetti {
    position: absolute;
    top: 0;
    width: 14px;
    height: 14px;
    animation: confettiFall 2.5s ease-out forwards;
}

.confetti.round {
    border-radius: 50%;
}

.confetti.diamond {
    transform: rotate(45deg);
}

.confetti.star-shape {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.confetti:nth-child(1) { left: 10%; background: #ff6b6b; animation-delay: 0.3s; }
.confetti:nth-child(2) { left: 18%; background: #4ecdc4; animation-delay: 0.5s; width: 10px; height: 10px; }
.confetti:nth-child(3) { left: 25%; background: #ffe66d; animation-delay: 0.7s; border-radius: 50%; }
.confetti:nth-child(4) { left: 33%; background: #a29bfe; animation-delay: 0.4s; transform: rotate(45deg); }
.confetti:nth-child(5) { left: 41%; background: #fd79a8; animation-delay: 0.8s; }
.confetti:nth-child(6) { left: 48%; background: #00b894; animation-delay: 0.6s; border-radius: 50%; }
.confetti:nth-child(7) { left: 56%; background: #e17055; animation-delay: 0.9s; transform: rotate(45deg); }
.confetti:nth-child(8) { left: 64%; background: #6c5ce7; animation-delay: 0.5s; }
.confetti:nth-child(9) { left: 72%; background: #fdcb6e; animation-delay: 0.7s; border-radius: 50%; }
.confetti:nth-child(10) { left: 80%; background: #00cec9; animation-delay: 0.6s; }
.confetti:nth-child(11) { left: 88%; background: #fab1a0; animation-delay: 0.8s; transform: rotate(45deg); }
.confetti:nth-child(12) { left: 15%; background: #fd79a8; animation-delay: 1.0s; border-radius: 50%; }
.confetti:nth-child(13) { left: 75%; background: #ffeaa7; animation-delay: 1.1s; }
.confetti:nth-child(14) { left: 38%; background: #74b9ff; animation-delay: 0.9s; }
.confetti:nth-child(15) { left: 62%; background: #fdcb6e; animation-delay: 1.2s; border-radius: 50%; }

.stars-container {
    position: absolute;
    top: -50px;
    left: -80px;
    width: calc(100% + 160px);
    height: calc(100% + 100px);
    pointer-events: none;
    z-index: 10;
}

.star {
    position: absolute;
    font-size: 28px;
    color: #ffe66d;
    animation: starPop 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 230, 109, 0.9);
}

.star.small { font-size: 18px; }
.star.large { font-size: 36px; }

.sparkles-container {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    pointer-events: none;
    z-index: 10;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: sparklePop 1.2s ease-out forwards;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00d4ff;
}

@keyframes sparklePop {
    0% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    30% {
        opacity: 1;
        transform: scale(1.5) translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-30px);
    }
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(300px) rotate(720deg) scale(0.5);
    }
}

.avatar-wrapper:hover {
    transform: scale(1.05);
}

.avatar-wrapper:hover .avatar {
    box-shadow: 
        0 0 0 3px #1a1a2a,
        0 0 0 12px #4a4a5a,
        0 0 0 13px #2a2a3a,
        0 0 30px rgba(0, 212, 255, 0.3),
        0 0 60px rgba(124, 58, 237, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.1);
    transform: rotate(1deg) scale(1.02);
}

.avatar-wrapper:hover .avatar img {
    transform: scale(1.03);
}

.avatar-wrapper:hover .decoration-circle {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.2;
}

.avatar-wrapper:hover .avatar-glow {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
}

.hobbies {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
}

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

.section-badge {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hobby-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hobby-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s;
}

.hobby-card:hover::before {
    left: 100%;
}

.hobby-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.hobby-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.hobby-icon.bounce {
    animation: bounce 2s ease-in-out infinite;
}

.hobby-icon.shake {
    animation: shake 0.5s ease-in-out infinite;
}

.hobby-icon.spin {
    animation: spin 8s linear infinite;
}

.hobby-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hobby-card:hover .hobby-icon {
    transform: scale(1.15);
}

.hobby-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.hobby-level {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
}

.hobby-desc {
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    line-height: 1.7;
    margin-bottom: 20px !important;
}

.hobby-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hobby-tags span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(0, 212, 255, 0.3));
    border-radius: 25px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.hobby-card:hover .hobby-tags span {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(0, 212, 255, 0.5));
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.stats {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.05) 30%, rgba(0, 212, 255, 0.05) 70%, transparent 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-item {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-item:hover .stat-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.stat-value {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.stat-value::after {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #7c3aed, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 40px;
}

.divider-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.divider-icon {
    font-size: 28px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.ai-philosophy {
    padding: 40px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.03) 50%, transparent 100%);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 30px;
}

.philosophy-header .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-header .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s;
}

.philosophy-card:hover::before {
    left: 100%;
}

.philosophy-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.card-icon {
    font-size: 24px;
    margin-right: 10px;
    animation: iconFloat 3s ease-in-out infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.philosophy-card:hover .card-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.philosophy-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.philosophy-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(0, 212, 255, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s;
}

.philosophy-card:hover .card-tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.7), rgba(0, 212, 255, 0.6));
    transform: scale(1.05);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 40px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.wechat-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wechat-qr {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.wechat-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wechat-text {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

.contact-alternative {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-alternative p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #fff;
    transform: translateX(5px);
}

.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

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

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 13px;
}

.about-hero,
.works-hero,
.notes-hero {
    padding: 120px 20px 60px;
    position: relative;
}

.about-hero::before,
.works-hero::before,
.notes-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero h1,
.works-hero h1,
.notes-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.about-hero .subtitle,
.works-hero .subtitle,
.notes-hero .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.about-intro {
    padding: 60px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.intro-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.timeline-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 40px 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.timeline-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s;
}

.timeline-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.timeline-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.skills {
    padding: 60px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.skill-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.skill-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.skill-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.skill-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.philosophy {
    padding: 60px 0;
    background: var(--bg-card);
}

.philosophy-items {
    display: flex;
    gap: 30px;
}

.philosophy-item {
    display: flex;
    gap: 15px;
}

.philosophy-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.philosophy-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.philosophy-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.works-intro {
    padding: 40px 0;
    text-align: center;
}

.works-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.works-grid-section {
    padding: 40px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.work-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.work-card.featured {
    grid-column: span 2;
}

.work-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-card:hover .work-image img {
    transform: scale(1.05);
}

.work-info {
    padding: 25px;
}

.work-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.work-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.work-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.work-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.work-tags span {
    padding: 6px 14px;
    background: var(--bg-dark);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.vibecoding-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.vibecoding-section .section-title {
    color: var(--text-primary);
}

.vibecoding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vibecoding-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.vibecoding-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.vibecoding-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vibecoding-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.vibecoding-item:hover {
    border-color: var(--primary-color);
}

.vibecoding-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.vibecoding-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.vibecoding-item p {
    color: var(--text-light);
    font-size: 13px;
}

.notes-intro {
    padding: 40px 0;
    text-align: center;
}

.notes-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.notes-section {
    padding: 40px 0;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.note-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.note-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.note-card.featured {
    grid-column: span 2;
}

.note-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.note-card h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.note-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.note-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.note-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

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

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    text-align: center;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-primary);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .avatar {
        width: 260px;
        height: 260px;
    }

    .hobbies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hobby-card {
        padding: 30px 20px;
    }

    .hobby-card h3 {
        font-size: 20px;
    }

    .hobby-icon {
        font-size: 40px;
        padding: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-cards {
        grid-template-columns: 1fr;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .philosophy-items {
        flex-direction: column;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-card.featured {
        grid-column: span 1;
    }

    .vibecoding-content {
        grid-template-columns: 1fr;
    }

    .vibecoding-list {
        grid-template-columns: 1fr;
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .note-card.featured {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-cta {
        display: none;
    }
}