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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #2d1810;
    color: #fff;
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: #d4956a;
    top: -200px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #8b5a3c;
    bottom: -100px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

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

/* Header */
header {
    text-align: center;
    margin-bottom: 32px;
}

.paw-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 16px;
    color: #d4956a;
    filter: drop-shadow(0 0 20px rgba(212, 149, 106, 0.5));
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff5eb;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(212, 149, 106, 0.3);
}

.subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    color: #c9a88a;
    margin-bottom: 20px;
}

.love-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 12px 24px;
}

.love-badge .heart {
    color: #e57373;
    font-size: 18px;
}

.love-badge .text {
    font-size: 14px;
    font-weight: 600;
    color: #fff5eb;
}

/* Feature Card */
.feature-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #d4956a 0%, #a67c52 100%);
    box-shadow: 0 10px 40px rgba(212, 149, 106, 0.3);
}

.feature-glow {
    display: none;
}

.feature-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    text-align: center;
}

.feature-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.2);
    color: #fff5eb;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.feature-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d1810;
    margin-bottom: 20px;
}

.feature-details {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature-details .detail {
    text-align: center;
}

.feature-details .label {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: #5a3d2a;
    margin-bottom: 4px;
}

.feature-details .value {
    font-weight: 700;
    font-size: 16px;
    color: #2d1810;
}

/* Highlights */
.highlights {
    margin-bottom: 32px;
}

h2 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a88a;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

h2::before, h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5a3d2a, transparent);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.highlight-card {
    background: linear-gradient(135deg, #3d2518 0%, #2d1810 100%);
    border: 1px solid #5a3d2a;
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    border-color: #d4956a;
}

.highlight-emoji {
    font-size: 36px;
    margin-bottom: 8px;
}

.highlight-text {
    font-size: 12px;
    color: #c9a88a;
    line-height: 1.4;
}

/* Daily Joys */
.daily-joys {
    margin-bottom: 32px;
}

.joys {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.joy {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-radius: 12px;
    background: #3d2518;
    border: 1px solid #5a3d2a;
    transition: all 0.2s;
}

.joy:hover {
    background: #4d3528;
    transform: translateX(4px);
}

.joy .time {
    width: 70px;
    font-size: 12px;
    font-weight: 600;
    color: #8b6b4a;
    letter-spacing: 0.5px;
}

.joy .moment {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #fff5eb;
}

.joy .vibe {
    font-size: 20px;
    min-width: 30px;
    text-align: right;
}

.joy.featured {
    background: linear-gradient(90deg, rgba(212, 149, 106, 0.2) 0%, #3d2518 100%);
    border: 1px solid #d4956a;
}

.joy.featured .moment {
    color: #d4956a;
    font-weight: 600;
}

/* Traits */
.traits {
    margin-bottom: 32px;
}

.trait-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trait {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trait-name {
    width: 140px;
    font-size: 13px;
    font-weight: 600;
    color: #c9a88a;
}

.trait-bar {
    flex: 1;
    height: 12px;
    background: #3d2518;
    border-radius: 6px;
    overflow: hidden;
}

.trait-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4956a, #e5a878);
    border-radius: 6px;
    transition: width 1s ease;
}

/* Footer */
footer {
    text-align: center;
    font-size: 13px;
    color: #8b6b4a;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 24px 16px 40px;
    }

    h1 {
        font-size: 36px;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .highlight-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        text-align: left;
    }

    .highlight-emoji {
        font-size: 32px;
        margin-bottom: 0;
        min-width: 50px;
    }

    .highlight-text {
        font-size: 14px;
    }

    .feature-quote {
        font-size: 20px;
    }

    .joy .moment {
        font-size: 13px;
    }

    .joy .time {
        width: 60px;
        font-size: 11px;
    }

    .trait {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .trait-name {
        width: 100%;
    }

    .trait-bar {
        width: 100%;
    }

    .glow-1 {
        width: 250px;
        height: 250px;
    }

    .glow-2 {
        width: 200px;
        height: 200px;
    }
}
