* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ma Shan Zheng', cursive, sans-serif;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe4e1 50%, #fce4ec 100%);
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 182, 193, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo .rainbow-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6b9d, #c44fff, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ff6b9d;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff6b9d;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.avatar-container {
    position: relative;
    margin-bottom: 2rem;
}

.avatar-ring {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #4facfe, #c44fff);
    padding: 8px;
    margin: 0 auto;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    font-size: 2rem;
    color: #ffd700;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.star-2 {
    bottom: 20px;
    left: -40px;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.cloud {
    position: absolute;
    font-size: 2.5rem;
    animation: float 4s ease-in-out infinite;
}

.cloud-1 {
    top: 30%;
    right: -60px;
    animation-delay: 0s;
}

.cloud-2 {
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.wave {
    animation: wave-animation 2s ease-in-out infinite;
}

@keyframes wave-animation {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.name-highlight {
    background: linear-gradient(90deg, #ff6b9d, #c44fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.rainbow-decoration {
    width: 300px;
    height: 150px;
    background: linear-gradient(90deg, #ff6b9d, #ffa07a, #ffd700, #98fb98, #87ceeb, #dda0dd);
    border-radius: 150px 150px 0 0;
    margin: 0 auto;
    opacity: 0.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b9d;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(255, 107, 157, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #ffb6c1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff6b9d;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hobby-card {
    background: linear-gradient(135deg, #fff5f5, #ffe4e1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px dashed #ffb6c1;
}

.hobby-card:hover {
    transform: scale(1.05);
    border-color: #ff6b9d;
}

.hobby-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hobby-card h3 {
    color: #ff6b9d;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.hobby-card p {
    color: #666;
    font-size: 0.95rem;
}

.manifesto-content {
    background: linear-gradient(135deg, #f0fff4, #e8f5e9);
    border-radius: 30px;
    padding: 3rem;
    border: 3px solid #a5d6a7;
}

.manifesto-card {
    margin-bottom: 2rem;
}

.manifesto-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(165, 214, 167, 0.2);
    transition: all 0.3s ease;
}

.manifesto-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(165, 214, 167, 0.3);
}

.check-icon {
    color: #66bb6a;
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.manifesto-item p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.call-to-action {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border-radius: 20px;
}

.call-to-action p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.vote-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: #ff6b9d;
    font-size: 1.3rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vote-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.footer {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-emoji {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .name-highlight {
        font-size: 2.2rem;
    }

    .avatar-ring {
        width: 220px;
        height: 220px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .hobbies-grid {
        grid-template-columns: 1fr;
    }

    .manifesto-content {
        padding: 2rem 1rem;
    }
}