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

body {
    font-family: "PingFang SC", "Comic Sans MS", "Microsoft YaHei", sans-serif;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 50%, #ffd6e0 100%);
    color: #5a3a3a;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 183, 197, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 90% 60%, rgba(255, 203, 164, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 50% 80%, rgba(255, 105, 180, 0.15) 0%, transparent 10%),
        radial-gradient(circle at 30% 90%, rgba(255, 183, 197, 0.2) 0%, transparent 6%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ===== Header ===== */
.site-header {
    background: linear-gradient(135deg, #ffb7c5, #ff69b4);
    border-radius: 30px;
    padding: 20px 40px;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #ffcba4 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
}

.site-header::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #fff0f5 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: radial-gradient(circle at 35% 35%, #ffcba4, #ff8fa3);
    border-radius: 50%;
    position: relative;
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.15);
    animation: peachFloat 3s ease-in-out infinite;
}

.logo-icon::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 18px;
    background: #8b4513;
    border-radius: 50% 50% 0 0;
}

.logo-icon::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 55%;
    width: 16px;
    height: 10px;
    background: #7cb342;
    border-radius: 50% 0 50% 50%;
    transform: rotate(-20deg);
}

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

.logo-text {
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 2px;
}

.logo-text span {
    font-size: 14px;
    display: block;
    font-weight: normal;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* ===== Navigation ===== */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.main-nav a:hover,
.main-nav a.active {
    background: #fff;
    color: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Cards ===== */
.card {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(255, 183, 197, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffb7c5, #ff69b4, #ffcba4);
    border-radius: 25px 25px 0 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.card h2,
.card h3 {
    color: #d6336c;
    margin-bottom: 12px;
    font-size: 20px;
}

.card p {
    color: #5a3a3a;
    line-height: 1.7;
}

/* ===== Grid Layouts ===== */
.grid {
    display: grid;
    gap: 25px;
}

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

@media (max-width: 900px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .site-header { padding: 15px 20px; }
    .main-nav ul { gap: 5px; }
    .main-nav a { padding: 8px 14px; font-size: 13px; }
    .logo-text { font-size: 20px; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.btn-secondary {
    background: #fff;
    color: #ff69b4;
    border: 2px solid #ffb7c5;
}

.btn-secondary:hover {
    background: #fff0f5;
    border-color: #ff69b4;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    border-radius: 35px;
}

/* ===== Sections ===== */
.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    color: #d6336c;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title::before,
.section-title::after {
    content: "🍑";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
}

.section-title::before { left: 0; }
.section-title::after { right: 0; }

.section-subtitle {
    text-align: center;
    color: #c2185b;
    margin-bottom: 30px;
    font-size: 15px;
}

/* ===== Hero / Carousel ===== */
.hero {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e9 100%);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 183, 197, 0.35);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ffcba4 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0.4;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #ffb7c5 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0.35;
}

.hero h1 {
    font-size: 38px;
    color: #d6336c;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 17px;
    color: #8b4513;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== Feature Cards ===== */
.feature-card {
    text-align: center;
    padding: 35px 25px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ffe4e9, #ffcba4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(255, 183, 197, 0.4);
}

/* ===== Updates Feed ===== */
.feed-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px dashed #ffd6e0;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-date {
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(255, 105, 180, 0.3);
}

.feed-content h4 {
    color: #d6336c;
    margin-bottom: 4px;
    font-size: 16px;
}

.feed-content p {
    color: #8b6a6a;
    font-size: 14px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, #ff69b4 0%, #ff8fa3 50%, #ffb7c5 100%);
    border-radius: 30px;
    padding: 45px;
    text-align: center;
    color: #fff;
    margin: 40px 0;
    box-shadow: 0 10px 35px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 30%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-banner p {
    font-size: 17px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #ff69b4;
}

.cta-banner .btn-primary:hover {
    background: #fff0f5;
    color: #d6336c;
}

/* ===== Peach Decorations ===== */
.peach-decoration {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    pointer-events: none;
    animation: bobble 4s ease-in-out infinite;
}

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

/* ===== Tags ===== */
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ffe4e9, #ffcba4);
    color: #d6336c;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    margin: 3px;
}

.tag-pink {
    background: linear-gradient(135deg, #ffb7c5, #ff69b4);
    color: #fff;
}

/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(135deg, #ffb7c5, #ff8fa3);
    border-radius: 30px 30px 0 0;
    padding: 40px;
    margin-top: 50px;
    color: #fff;
    text-align: center;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, #fff0f5 0, #fff0f5 20px, #ffcba4 20px, #ffcba4 40px);
    border-radius: 30px 30px 0 0;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 2px dashed rgba(255, 255, 255, 0.4);
    font-size: 14px;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .footer-content { grid-template-columns: 1fr; }
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d6336c;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #ffd6e0;
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    background: #fff0f5;
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff69b4;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Poll Widget ===== */
.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    margin-bottom: 10px;
    background: #fff0f5;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.poll-option:hover {
    background: #ffe4e9;
    border-color: #ffb7c5;
}

.poll-option input[type="radio"] {
    accent-color: #ff69b4;
    width: 18px;
    height: 18px;
}

.poll-bar {
    height: 8px;
    background: #ffd6e0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.poll-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff69b4, #ffcba4);
    border-radius: 10px;
    transition: width 0.5s ease;
}

/* ===== Love Meter ===== */
.love-meter {
    text-align: center;
    padding: 30px;
}

.meter-display {
    font-size: 48px;
    margin: 15px 0;
}

.meter-bar {
    height: 25px;
    background: #fff0f5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 15px 0;
}

.meter-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffb7c5, #ff69b4, #ffcba4);
    border-radius: 20px;
    transition: width 0.5s ease;
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.meter-label {
    font-size: 20px;
    color: #d6336c;
    font-weight: bold;
}

/* ===== Gallery ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffe4e9, #ffcba4);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 6px 20px rgba(255, 183, 197, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

.gallery-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
    font-size: 13px;
    color: #d6336c;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 600px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Creator Spotlight ===== */
.creator-card {
    text-align: center;
    padding: 30px;
}

.creator-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #ffb7c5, #ff8fa3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.35);
}

.creator-name {
    font-size: 20px;
    color: #d6336c;
    margin-bottom: 5px;
    font-weight: bold;
}

.creator-desc {
    color: #8b6a6a;
    font-size: 14px;
    margin-bottom: 15px;
}

/* ===== Trend/Category List ===== */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.category-btn {
    padding: 10px 22px;
    background: #fff;
    border: 2px solid #ffb7c5;
    color: #d6336c;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 14px;
}

.category-btn:hover,
.category-btn.active {
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

/* ===== Events Calendar ===== */
.event-item {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 25px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255, 183, 197, 0.2);
    transition: all 0.3s;
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.25);
}

.event-date {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

.event-date .month {
    font-size: 13px;
    font-weight: normal;
    opacity: 0.9;
}

.event-date .day {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.event-info h4 {
    color: #d6336c;
    margin-bottom: 5px;
    font-size: 17px;
}

.event-info p {
    color: #8b6a6a;
    font-size: 14px;
}

/* ===== Misc ===== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffb7c5, transparent);
    border-radius: 3px;
    margin: 30px 0;
}

.peach-bullet {
    list-style: none;
    padding: 0;
}

.peach-bullet li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: #5a3a3a;
}

.peach-bullet li::before {
    content: "🍑";
    position: absolute;
    left: 0;
    top: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #fff0f5, #ffe4e9);
    border-radius: 25px;
    padding: 25px;
    border: 2px dashed #ffb7c5;
    margin: 20px 0;
}

.highlight-box h3 {
    color: #d6336c;
    margin-bottom: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff69b4, #ff8fa3);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.steps-list {
    list-style: none;
    counter-reset: step;
}

.steps-list li {
    counter-increment: step;
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed #ffd6e0;
}

.steps-list li:last-child {
    border-bottom: none;
}

.trend-card {
    text-align: center;
    padding: 20px;
}

.trend-rank {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff69b4, #ffcba4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trend-title {
    color: #d6336c;
    font-weight: bold;
    margin: 8px 0;
}

.trend-meta {
    font-size: 13px;
    color: #8b6a6a;
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}