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

/* ==================== VARIABLES ==================== */
:root {
    --pink-1: #ff0080;
    --pink-2: #ff1493;
    --pink-3: #ff69b4;
    --pink-4: #ffb6d9;
    --purple-1: #8b5cf6;
    --purple-2: #a855f7;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #16161f;
    --text-white: #ffffff;
    --text-gray: #a8a8b8;
}

/* ==================== ENTER SCREEN ==================== */
.enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1f 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.enter-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.enter-content {
    text-align: center;
    animation: enterFadeIn 1s ease;
}

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

.enter-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    position: relative;
}

.enter-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--pink-2);
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.6);
    animation: enterFloat 3s ease-in-out infinite;
}

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

.enter-avatar::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2));
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.7;
    animation: enterPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes enterPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

.enter-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    animation: enterGradient 3s ease infinite;
}

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

.enter-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.enter-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
    transition: all 0.3s ease;
    animation: enterButtonPulse 2s ease infinite;
}

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

.enter-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 128, 0.6);
}

.enter-button i {
    font-size: 20px;
}

.enter-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
    opacity: 0.7;
}

/* ==================== BASE ==================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Full Page Star Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px),
        radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    animation: starsMove 200s linear infinite;
}

@keyframes starsMove {
    0% {
        background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    }
    100% {
        background-position: 550px 550px, 590px 610px, 680px 820px, 620px 650px;
    }
}

/* Shooting stars */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    animation: shootingStar 8s linear infinite;
}

@keyframes shootingStar {
    0% {
        background: radial-gradient(ellipse at -10% -10%, white 1px, transparent 4px);
    }
    5% {
        background: radial-gradient(ellipse at 20% 20%, white 1px, transparent 4px);
    }
    10%, 100% {
        background: transparent;
    }
}

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

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 128, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(255, 0, 128, 0.1);
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-3));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-3));
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 128, 0.05) 50%, transparent 70%);
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Star Background - Layer 1 (Small stars) */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 85%, white, transparent),
        radial-gradient(2px 2px at 15% 55%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: stars 3s ease infinite;
    opacity: 0.6;
}

@keyframes stars {
    0%, 100% {
        background-position: 0% 0%, 10% 10%, 20% 20%, 30% 30%, 40% 40%, 50% 50%, 60% 60%;
    }
    50% {
        background-position: 10% 10%, 20% 20%, 30% 30%, 40% 40%, 50% 50%, 60% 60%, 70% 70%;
    }
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

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

.avatar-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 0, 128, 0.3);
    position: relative;
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

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

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: pulseGlow 1.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-name {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2), var(--pink-4));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -2px;
    animation: gradientShift 3s ease infinite;
}

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

.hero-title {
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 32px;
}

.hero-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tag {
    padding: 12px 28px;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pink-4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--pink-3);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: white;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 0, 128, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--pink-3);
    border: 2px solid var(--pink-2);
}

.btn-outline:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--pink-3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-2);
    border: 2px solid var(--purple-1);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-3px);
}

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

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== SECTIONS ==================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-heading {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3), var(--purple-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 64px;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 48px;
    margin-top: -40px;
}

/* ==================== ABOUT SECTION ==================== */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 128, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-2);
    box-shadow: 0 16px 48px rgba(255, 0, 128, 0.2);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.3);
}

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

.about-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.stat-card {
    background: rgba(255, 0, 128, 0.03);
    border: 1px solid rgba(255, 0, 128, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 0, 128, 0.05);
    border-color: var(--pink-2);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==================== PROJECT SECTION ==================== */
.project-showcase {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 128, 0.15);
    border-radius: 32px;
    padding: 56px;
    margin-bottom: 48px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.project-hero {
    text-align: center;
    margin-bottom: 40px;
}

.project-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2), var(--purple-1));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(255, 0, 128, 0.4);
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.project-hero h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--pink-4);
    font-weight: 600;
}

.project-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.project-description p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 0, 128, 0.03);
    border: 1px solid rgba(255, 0, 128, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 0, 128, 0.08);
    border-color: var(--pink-2);
    transform: translateX(8px);
}

.feature-item i {
    font-size: 24px;
    color: var(--pink-2);
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
}

.project-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Community Box */
.community-box {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.community-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-1), var(--purple-2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    flex-shrink: 0;
}

.community-header h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.role-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 50px;
    font-size: 13px;
    color: var(--purple-2);
    font-weight: 600;
}

.community-box p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 128, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.contact-box:hover {
    transform: translateY(-8px);
    border-color: var(--pink-2);
    box-shadow: 0 16px 48px rgba(255, 0, 128, 0.25);
}

.contact-box:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(255, 0, 128, 0.3);
}

.contact-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.contact-box p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.contact-arrow {
    font-size: 24px;
    color: var(--pink-2);
    transition: transform 0.3s ease;
}

.contact-box:hover .contact-arrow {
    transform: translateX(8px);
}

.social-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 0, 128, 0.5);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 0, 128, 0.1);
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        padding: 32px;
        gap: 24px;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(255, 0, 128, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-name {
        font-size: 48px;
    }
    
    .section-heading {
        font-size: 40px;
    }
    
    .project-showcase {
        padding: 32px 24px;
    }
    
    .project-hero h3 {
        font-size: 36px;
    }
    
    .community-header {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 36px;
    }
    
    .avatar-container {
        width: 180px;
        height: 180px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
