    .anniversary-list {
        max-width: 800px;
        margin: 0 auto 40px;
        padding: 16px;
    }

    .anniversary-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .anniversary-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .anniversary-card.celebrating {
        background: linear-gradient(135deg, #fff5f8 0%, #ffe6f0 100%);
        border: 2px solid #ff9ac2;
    }

    .anniversary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
    }

    .anniversary-name {
        font-size: 1.3rem;
        font-weight: 600;
        color: #d63384;
    }

    .anniversary-date {
        font-size: 0.9rem;
        color: #777;
    }

    .anniversary-note {
        color: #666;
        margin-bottom: 16px;
        font-size: 0.95rem;
    }

    .time-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .time-box {
        background: #f8f9fa;
        border-radius: 8px;
        padding: 12px;
        text-align: center;
    }

    .time-box.past {
        background: #e7f5ff;
    }

    .time-box.future {
        background: #fff5f8;
    }

    .time-label {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 4px;
    }

    .time-value {
        font-size: 1.1rem;
        font-weight: 600;
        color: #222;
    }

    .celebrating-badge {
        display: inline-block;
        background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-left: 8px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.7;
        }
    }

    body.dark-mode .anniversary-card {
        background: #2d2d2d;
    }

    body.dark-mode .anniversary-card.celebrating {
        background: linear-gradient(135deg, #3d2d36 0%, #4a2d38 100%);
    }

    body.dark-mode .time-box {
        background: #3d3d3d;
    }

    body.dark-mode .time-box.past {
        background: #2d3d4d;
    }

    body.dark-mode .time-box.future {
        background: #3d2d36;
    }

    body.dark-mode .anniversary-name {
        color: #ff9ac2;
    }

    body.dark-mode .time-value {
        color: #fff;
    }