@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
    --primary: #e74c8b;
    --primary-dark: #c0365e;
    --secondary: #ff6b9d;
    --accent: #ffd1dc;
    --bg: #1a0a14;
    --bg-card: #2a1020;
    --bg-card-hover: #3a1a30;
    --text: #fff0f5;
    --text-muted: #c9a0b0;
    --gold: #ffd700;
    --green: #4ecdc4;
    --gradient: linear-gradient(135deg, #e74c8b, #ff6b9d, #ff8a80);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Falling Hearts Animation */
.falling-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.falling-heart {
    position: absolute;
    top: -20px;
    animation: fall linear infinite;
    opacity: 0.3;
    color: var(--primary);
    font-size: 16px;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px 10px;
    position: relative;
    z-index: 1;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1em;
    font-weight: 300;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px 20px;
    position: relative;
    z-index: 1;
}

.nav-btn {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 139, 0.3);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    transition: all 0.3s;
}

.nav-btn:hover, .nav-btn.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 139, 0.4);
}

/* Pages */
.page {
    display: none;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 139, 0.15);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(231, 76, 139, 0.3);
    box-shadow: 0 8px 30px rgba(231, 76, 139, 0.1);
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-card {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #2a1020, #3a1535);
    padding: 40px;
}

.heart-pulse {
    font-size: 60px;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

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

.hero-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin: 10px 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-card p {
    color: var(--text-muted);
    font-size: 1.1em;
}

.next-call-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    margin-top: 15px;
    font-weight: 500;
    font-size: 1em;
}

.quote-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2em;
    font-style: italic;
    color: var(--accent);
    margin: 15px 0;
    padding-left: 15px;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
}

.countdown-card .event-name {
    display: block;
    font-size: 1.3em;
    color: var(--gold);
    margin: 10px 0 5px;
}

.countdown-card .event-countdown {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85em;
}

/* Buttons */
.btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 139, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(231, 76, 139, 0.1);
    box-shadow: none;
}

.btn-danger {
    background: #ff4444;
}

.btn-success {
    background: var(--green);
}

.btn-snooze {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-snooze:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.5);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 139, 0.2);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Poem Grid */
.poem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.poem-card {
    background: var(--bg-card);
    border: 1px solid rgba(231, 76, 139, 0.15);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.poem-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(231, 76, 139, 0.2);
}

.poem-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.poem-card p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.7;
    white-space: pre-line;
}

.poem-card .poem-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

/* Quote List */
.quote-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-item {
    background: var(--bg-card);
    border-left: 3px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.quote-item:hover {
    background: var(--bg-card-hover);
}

.quote-item p {
    font-style: italic;
    color: var(--accent);
    flex: 1;
}

/* Call Cards */
.call-schedule {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.call-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid;
    transition: all 0.3s;
}

.call-card.morning { border-left-color: #ff9800; }
.call-card.afternoon { border-left-color: var(--primary); }
.call-card.evening { border-left-color: #9c27b0; }

.call-card.snoozed {
    opacity: 0.7;
    border-left-style: dashed;
}

.call-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4em;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.clock-icon { font-size: 0.9em; }

.call-message {
    color: var(--text-muted);
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background: rgba(231, 76, 139, 0.05);
    border-radius: 8px;
}

.call-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.call-status {
    color: var(--green);
    font-size: 0.85em;
    font-weight: 500;
}

.snooze-info {
    color: #ff9800;
    font-size: 0.85em;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* History */
.history-list {
    max-height: 300px;
    overflow-y: auto;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(231, 76, 139, 0.1);
    font-size: 0.9em;
}

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

.history-item .time { color: var(--gold); font-weight: 500; }
.history-item .status-done { color: var(--green); }
.history-item .status-snoozed { color: #ff9800; }

/* Forms */
.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(231, 76, 139, 0.2);
    color: var(--text);
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
    transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(231, 76, 139, 0.15);
}

label {
    color: var(--text-muted);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
}

input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

/* Dates Timeline */
.dates-timeline {
    margin-top: 20px;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(231, 76, 139, 0.1);
    transition: all 0.3s;
}

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

.date-badge {
    min-width: 60px;
    text-align: center;
    background: var(--gradient);
    border-radius: 12px;
    padding: 10px;
}

.date-badge .day {
    font-size: 1.5em;
    font-weight: 700;
    display: block;
}

.date-badge .month {
    font-size: 0.75em;
    text-transform: uppercase;
}

.date-info {
    flex: 1;
}

.date-info h4 {
    color: var(--accent);
    margin-bottom: 3px;
}

.date-info .days-left {
    color: var(--gold);
    font-size: 0.9em;
}

.date-info .note {
    color: var(--text-muted);
    font-size: 0.85em;
}

.date-actions {
    display: flex;
    gap: 8px;
}

/* Surprise Ideas */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.idea-card {
    background: rgba(231, 76, 139, 0.08);
    border: 1px solid rgba(231, 76, 139, 0.15);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.idea-card:hover {
    background: rgba(231, 76, 139, 0.15);
    transform: translateY(-3px);
}

.idea-icon { font-size: 2em; margin-bottom: 8px; }
.idea-title { font-weight: 500; font-size: 0.95em; }

/* Surprise List */
.surprise-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.surprise-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 18px;
    border: 1px solid rgba(231, 76, 139, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.surprise-item.done {
    opacity: 0.6;
    border-color: var(--green);
}

.surprise-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85em;
    margin-top: 5px;
}

.surprise-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Notification Popup */
.notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.notification.hidden {
    display: none;
}

.notification-content {
    background: linear-gradient(135deg, #2a1020, #3a1535);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: popIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(231, 76, 139, 0.3);
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.notification-heart {
    font-size: 50px;
    color: var(--primary);
    animation: pulse 1s ease-in-out infinite;
}

.notification-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    margin: 10px 0;
    font-size: 1.6em;
}

.notification-poem {
    font-style: italic;
    color: var(--accent);
    margin: 15px 0;
    line-height: 1.6;
    font-size: 0.95em;
    white-space: pre-line;
}

.notification-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.snooze-count {
    display: block;
    color: #ff9800;
    font-size: 0.8em;
    margin-top: 8px;
}

/* Info text */
.info-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* Responsive */
@media (max-width: 768px) {
    header h1 { font-size: 2em; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .poem-grid { grid-template-columns: 1fr; }
    .ideas-grid { grid-template-columns: repeat(2, 1fr); }
    nav { padding: 10px; }
    .nav-btn { padding: 8px 14px; font-size: 0.8em; }
    .notification-content { padding: 25px; }
}

@media (max-width: 480px) {
    .ideas-grid { grid-template-columns: 1fr; }
    .call-actions { flex-direction: column; }
    .call-actions .btn { width: 100%; }
}

/* ==================== FRIENDS ==================== */
.friends-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.friend-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}

.friend-card:hover {
    background: var(--bg-card-hover);
}

.friend-card.selected {
    border-color: var(--primary);
}

.friend-card-emoji {
    font-size: 2.4em;
    min-width: 52px;
    text-align: center;
    line-height: 1;
}

.friend-card-info {
    flex: 1;
    min-width: 0;
}

.friend-card-info h4 {
    margin: 0 0 3px;
    font-size: 1.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.friend-phone {
    font-size: 0.82em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.friend-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.friend-badge {
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 0.72em;
    font-weight: 600;
}

.friend-badge.birthday {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.friend-badge.meet {
    background: rgba(78, 205, 196, 0.15);
    color: var(--green);
    border: 1px solid rgba(78, 205, 196, 0.4);
}

.friend-badge.soon {
    background: rgba(231, 76, 139, 0.15);
    color: var(--primary);
    border: 1px solid rgba(231, 76, 139, 0.4);
}

.friend-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .friend-card { flex-wrap: wrap; }
    .friend-card-actions { width: 100%; justify-content: flex-end; }
}

/* ==================== MOOD TRACKER ==================== */
.mood-picker {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.mood-btn {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(231, 76, 139, 0.2);
    border-radius: 16px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85em;
    transition: all 0.3s;
    min-width: 80px;
}

.mood-btn span { display: block; font-size: 0.9em; }
.mood-btn:first-child { font-size: 1.8em; }
.mood-btn > :first-child { font-size: 2em; }

.mood-btn:hover, .mood-btn.selected {
    background: rgba(231, 76, 139, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 139, 0.25);
}

.mood-chart {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    min-height: 120px;
}

.mood-chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 50px;
}

.mood-chart-bar .bar-emoji { font-size: 1.5em; }
.mood-chart-bar .bar-date { font-size: 0.72em; color: var(--text-muted); }

.mood-bar-fill {
    width: 36px;
    border-radius: 6px 6px 0 0;
    background: var(--gradient);
    transition: height 0.4s ease;
    min-height: 8px;
}

.mood-history {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.mood-history-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border: 1px solid rgba(231,76,139,0.1);
}

.mood-history-item .mhi-emoji { font-size: 1.6em; }
.mood-history-item .mhi-date { color: var(--gold); font-size: 0.85em; font-weight: 500; min-width: 90px; }
.mood-history-item .mhi-label { color: var(--text); font-size: 0.9em; }
.mood-history-item .mhi-note { color: var(--text-muted); font-size: 0.82em; flex: 1; font-style: italic; }

/* ==================== TEMPLATES ==================== */
.template-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.template-card {
    background: var(--bg-card);
    border: 1px solid rgba(231,76,139,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.2s;
}

.template-card:hover { background: var(--bg-card-hover); }

.template-text {
    flex: 1;
    color: var(--accent);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95em;
}

.template-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

/* ==================== DIARY ==================== */
.diary-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.diary-card {
    background: var(--bg-card);
    border: 1px solid rgba(231,76,139,0.15);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s;
    position: relative;
}

.diary-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(231,76,139,0.15);
    transform: translateY(-2px);
}

.diary-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.diary-emoji { font-size: 2em; }

.diary-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    margin: 0;
}

.diary-date { color: var(--text-muted); font-size: 0.82em; }

.diary-text {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.7;
    white-space: pre-line;
}

.diary-delete {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 1.1em;
    opacity: 0;
    transition: opacity 0.2s;
}

.diary-card:hover .diary-delete { opacity: 1; }

/* ==================== PLAYLIST ==================== */
.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.song-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(231,76,139,0.12);
    transition: background 0.2s;
}

.song-card:hover { background: var(--bg-card-hover); }

.song-num {
    font-size: 1.3em;
    color: var(--text-muted);
    min-width: 36px;
    text-align: center;
}

.song-info { flex: 1; }
.song-info h4 { margin: 0 0 3px; color: var(--text); }
.song-artist { color: var(--text-muted); font-size: 0.85em; }
.song-note { color: var(--accent); font-size: 0.82em; font-style: italic; margin-top: 3px; }

.song-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ==================== LOVE LANGUAGE ==================== */
.love-question {
    background: var(--bg-card);
    border: 1px solid rgba(231,76,139,0.15);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
}

.love-question h4 {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 1em;
    line-height: 1.5;
}

.love-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.love-option {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(231,76,139,0.2);
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    text-align: left;
    transition: all 0.25s;
}

.love-option:hover, .love-option.selected {
    background: rgba(231,76,139,0.15);
    border-color: var(--primary);
    color: #fff;
}

.love-result-bars {
    margin-top: 20px;
}

.love-result-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.love-result-label {
    min-width: 160px;
    font-size: 0.88em;
    color: var(--text);
}

.love-result-bar-wrap {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    height: 16px;
    overflow: hidden;
}

.love-result-bar-fill {
    height: 100%;
    border-radius: 8px;
    background: var(--gradient);
    transition: width 0.6s ease;
}

.love-result-score {
    min-width: 32px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9em;
}

/* ==================== GOALS ==================== */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.goal-card {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(231,76,139,0.15);
    transition: all 0.25s;
}

.goal-card.done {
    opacity: 0.55;
    border-color: var(--green);
    text-decoration: none;
}

.goal-card.done .goal-title { text-decoration: line-through; color: var(--text-muted); }

.goal-icon { font-size: 1.8em; min-width: 40px; text-align: center; }

.goal-info { flex: 1; }
.goal-title { font-weight: 500; color: var(--text); margin-bottom: 3px; }
.goal-meta { color: var(--text-muted); font-size: 0.82em; }

.goal-actions { display: flex; gap: 8px; flex-shrink: 0; }
