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

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
    background: linear-gradient(170deg, #fde8f0 0%, #f5e6f8 30%, #e8f0fe 70%, #fef3e4 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #4a3548;
    overscroll-behavior-y: contain;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 16px 60px;
}

/* ── Header ── */
header {
    text-align: center;
    padding: 44px 0 32px;
}

header h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b9d, #c06ef7, #6eb5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    color: #b8a0b4;
    font-size: 14px;
    font-weight: 400;
}

/* ── Upload ── */
.upload-section {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.08);
    border: 1.5px solid rgba(233, 30, 99, 0.1);
}

.upload-area {
    position: relative;
    border: 2.5px dashed #e8c4d8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,245,248,0.6), rgba(248,240,255,0.6));
}

.upload-area:hover,
.upload-area.dragover {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, rgba(255,235,242,0.8), rgba(243,230,255,0.8));
    transform: scale(1.01);
}

.upload-area input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-hint {
    text-align: center;
    color: #c8a8b8;
}

.upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 30px;
    background: linear-gradient(135deg, #ffb8d0, #e0b8f8);
    border-radius: 50%;
    margin-bottom: 12px;
    color: #fff;
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.15);
}

.hint-sub {
    font-size: 12px;
    margin-top: 6px;
    color: #d0b8c4;
}

#preview {
    display: none;
    max-width: 100%;
    max-height: 360px;
    border-radius: 12px;
}

#analyze-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7eb3, #c273f0);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
    letter-spacing: 2px;
}

#analyze-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

#analyze-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(233, 30, 99, 0.35);
}

#analyze-btn:not(:disabled):active {
    transform: scale(0.97);
}

/* ── Utilities ── */
.hidden {
    display: none !important;
}

/* ── Stage indicator ── */
.stage-indicator {
    text-align: center;
    padding: 18px 16px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-plain {
    font-size: 14px;
    color: #e8739e;
    font-weight: 700;
    letter-spacing: 1px;
}

.stage-plain .dot {
    display: inline-block;
    animation: bounce 0.6s alternate infinite;
}
.stage-plain .dot:nth-child(2) { animation-delay: 0.15s; }
.stage-plain .dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

/* Spinner during analysis */
.stage-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* 进度条 */
.progress-bar { display:block!important; width:100%; height:8px; background:#f3e5f5; border-radius:4px; margin:10px 0; overflow:hidden; }
.progress-fill { display:block!important; height:100%; width:0; background:linear-gradient(90deg,#ffb8d0,#c273f0); border-radius:4px; transition:width 0.5s ease; }
.progress-pct { font-size:12px; color:#c0a0c8; font-weight:600; }

.spinner-ring {
    width: 36px;
    height: 36px;
    border: 3.5px solid #f3e5f5;
    border-top-color: #e8739e;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stage-text {
    font-size: 14px;
    color: #e8739e;
    font-weight: 700;
    letter-spacing: 1px;
}

.stage-eta {
    font-size: 12px;
    color: #c0a8b8;
    font-weight: 400;
}

/* ── Face++ Data Card ── */
.facepp-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(46, 139, 87, 0.07);
    border: 1.5px solid rgba(46, 139, 87, 0.15);
}

.facepp-card h2 {
    font-size: 13px;
    text-align: center;
    color: #5a9a72;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* 颜值双分数 */
.facepp-beauty-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.facepp-beauty-item {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef5f8, #f8f0ff);
    border: 1.5px solid rgba(200, 150, 220, 0.25);
}

.facepp-bscore {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #e8557c, #9b5de5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.facepp-blabel {
    font-size: 11px;
    color: #a090b4;
    margin-top: 4px;
    letter-spacing: 1px;
}

/* 基本信息标签行 */
.facepp-info-row {
    text-align: center;
    margin-bottom: 10px;
}

.facepp-tag {
    display: inline-block;
    padding: 4px 12px;
    margin: 2px 4px;
    background: rgba(110, 180, 140, 0.1);
    color: #5a9a72;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* 指标网格 */
.facepp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.facepp-item {
    background: rgba(248,255,250,0.6);
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
}

.facepp-val {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.facepp-val.facepp-warn { color: #e8734a; }
.facepp-val.facepp-good { color: #3a7d5a; }

.facepp-label {
    display: block;
    font-size: 10px;
    color: #8ab09a;
    margin-top: 3px;
    letter-spacing: 1px;
}

/* 面部比例区 */
.facepp-prop {
    margin-top: 14px;
    padding: 14px 16px;
    background: rgba(248,245,252,0.6);
    border-radius: 12px;
    border: 1px solid rgba(160, 130, 180, 0.15);
}

.facepp-prop-title {
    font-size: 13px;
    font-weight: 700;
    color: #8b6ea8;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 2px;
}

/* 进度条行 */
.gauge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
}

.gauge-row-head {
    font-size: 10px;
    color: #b0a0b8;
    padding-bottom: 4px;
    border-bottom: 1px dotted rgba(160,130,180,0.15);
}

.gauge-label {
    width: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #6a5070;
    flex-shrink: 0;
}

.gauge-val {
    width: 36px;
    font-size: 12px;
    font-weight: 700;
    color: #5a9a72;
    text-align: center;
    flex-shrink: 0;
}

.gauge-val-warn { color: #e8734a; }

.gauge-bar {
    flex: 1;
    height: 8px;
    background: #e8e0ec;
    border-radius: 4px;
    position: relative;
    min-width: 40px;
}

.gauge-bar-head {
    flex: 1;
    font-size: 10px;
    color: #b0a0b8;
    text-align: center;
}

.gauge-range {
    position: absolute;
    top: 0; bottom: 0;
    background: rgba(110, 180, 140, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(110, 180, 140, 0.4);
}

.gauge-dot {
    position: absolute;
    top: -4px;
    width: 16px; height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.gauge-dot-good { background: #5a9a72; }
.gauge-dot-warn { background: #e8734a; }

.gauge-note {
    width: 32px;
    font-size: 11px;
    font-weight: 600;
    color: #8ab09a;
    text-align: right;
    flex-shrink: 0;
}

/* ── 美学评分条 ── */
/* 分项得分卡片 */
.breakdown-card { margin:0 0 16px; background:#fff; border-radius:16px; padding:20px 24px; box-shadow:0 4px 20px rgba(0,0,0,.05); }
.breakdown-card h2 { font-size:14px; font-weight:700; color:#9b5de5; letter-spacing:2px; margin:0 0 14px; text-align:center; }
.breakdown-grid { display:flex; flex-direction:column; gap:8px; }
.breakdown-item { display:flex; align-items:center; gap:10px; }
.breakdown-name { width:52px; font-size:13px; color:#7a6b80; text-align:right; flex-shrink:0; }
.breakdown-val { width:62px; font-size:14px; font-weight:700; color:#4a3548; text-align:right; flex-shrink:0; }
.breakdown-val small { font-size:10px; font-weight:400; color:#b0a0b8; }
.breakdown-plus { color:#4caf50; }
.breakdown-minus { color:#ef5350; }
.breakdown-bar-bg { flex:1; height:7px; background:#f0e8f5; border-radius:4px; overflow:hidden; }
.breakdown-bar-fill { height:100%; background:linear-gradient(90deg,#d4b8f0,#9b5de5); border-radius:4px; transition:width .5s ease; }

/* ── Skin Card ── */
.skin-card {
    background: rgba(255,255,255,0.85);
    border-radius: 20px; padding: 20px 22px; margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(46,139,87,0.06); border: 1.5px solid rgba(46,139,87,0.12);
    position: relative; overflow: hidden;
}
.skin-card::before { content:""; position:absolute; top:0;left:0;right:0;height:3px; background:linear-gradient(90deg,#8ec5a0,#a0d8b8); }
.skin-card h2 { font-size:13px; text-align:center; color:#5a9a72; letter-spacing:2px; margin-bottom:14px; }
.facepp-beauty-row { display:flex; gap:10px; margin-bottom:8px; }
.facepp-beauty-item { flex:1; text-align:center; padding:12px 8px; border-radius:14px; background:linear-gradient(135deg,rgba(248,255,250,0.8),rgba(240,255,245,0.6)); border:1px solid rgba(110,180,140,0.15); }
.facepp-bscore { font-size:34px; font-weight:900; background:linear-gradient(135deg,#3a7d5a,#6ab890); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1.1; }
.facepp-blabel { font-size:11px; color:#8ab09a; margin-top:4px; letter-spacing:1px; }
.facepp-info-row { text-align:center; margin-bottom:8px; }
.facepp-tag { display:inline-block; padding:3px 10px; margin:2px 3px; background:rgba(110,180,140,0.1); color:#5a9a72; border-radius:20px; font-size:11px; font-weight:600; }
.facepp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.facepp-item { background:rgba(248,255,250,0.5); border-radius:10px; padding:10px 6px; text-align:center; }
.facepp-val { display:block; font-size:18px; font-weight:800; line-height:1.2; }
.facepp-val.facepp-warn { color:#e8734a; }
.facepp-val.facepp-good { color:#3a7d5a; }
.facepp-label { display:block; font-size:10px; color:#8ab09a; margin-top:3px; }
.facepp-label small { color:#b0c8b8; }

/* ── Face++ Card (deprecated) ── */
.facepp-card {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    padding: 20px 22px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(46, 139, 87, 0.06);
    border: 1.5px solid rgba(46, 139, 87, 0.12);
    position: relative; overflow: hidden;
}
.facepp-card::before { content:""; position:absolute; top:0;left:0;right:0;height:3px; background:linear-gradient(90deg,#8ec5a0,#a0d8b8); }
.facepp-card h2 { font-size:13px; text-align:center; color:#5a9a72; letter-spacing:2px; margin-bottom:14px; }
.facepp-beauty-row { display:flex; gap:10px; margin-bottom:8px; }
.facepp-beauty-item { flex:1; text-align:center; padding:12px 8px; border-radius:14px; background:linear-gradient(135deg,rgba(248,255,250,0.8),rgba(240,255,245,0.6)); border:1px solid rgba(110,180,140,0.15); }
.facepp-bscore { font-size:34px; font-weight:900; background:linear-gradient(135deg,#3a7d5a,#6ab890); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1.1; }
.facepp-blabel { font-size:11px; color:#8ab09a; margin-top:4px; letter-spacing:1px; }
.facepp-info-row { text-align:center; margin-bottom:8px; }
.facepp-tag { display:inline-block; padding:3px 10px; margin:2px 3px; background:rgba(110,180,140,0.1); color:#5a9a72; border-radius:20px; font-size:11px; font-weight:600; }
.facepp-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.facepp-item { background:rgba(248,255,250,0.5); border-radius:10px; padding:10px 6px; text-align:center; }
.facepp-val { display:block; font-size:18px; font-weight:800; line-height:1.2; }
.facepp-val.facepp-warn { color:#e8734a; }
.facepp-val.facepp-good { color:#3a7d5a; }
.facepp-label { display:block; font-size:10px; color:#8ab09a; margin-top:3px; }
.facepp-label small { color:#b0c8b8; }

/* ── Score Card ── */
.score-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px 24px 22px;
    margin-bottom: 16px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.07);
    border: 1.5px solid rgba(233, 30, 99, 0.12);
    position: relative;
    overflow: hidden;
}

.score-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffb8d0, #d0a0f8, #8ec5ff);
}

.score-label {
    font-size: 14px;
    color: #b8a0b4;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.score-number {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff5e8e, #b05cf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.score-sub {
    font-size: 13px;
    color: #c8b0be;
    margin-top: 6px;
}

/* ── Analysis Card ── */
.analysis-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(180, 100, 220, 0.06);
    border: 1.5px solid rgba(180, 100, 220, 0.1);
}

.analysis-card h2 {
    font-size: 16px;
    margin-bottom: 18px;
    color: #a080b0;
    letter-spacing: 1px;
    text-align: center;
}

#analysis-text {
    line-height: 1.9;
    font-size: 14.5px;
    color: #5a4060;
}

/* ── Formatted sections ── */
.ana-section {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,245,248,0.6);
}

.ana-section:nth-child(1) { background: rgba(255,240,245,0.7); }
.ana-section:nth-child(2) { background: rgba(255,245,238,0.7); }
.ana-section:nth-child(3) { background: rgba(255,248,232,0.7); }
.ana-section:nth-child(4) { background: rgba(248,245,238,0.7); }
.ana-section:nth-child(5) { background: rgba(248,238,255,0.7); }
.ana-section:nth-child(6) { background: rgba(238,245,250,0.7); }
.ana-section:nth-child(7) { background: rgba(255,252,240,0.7); }
.ana-section:nth-child(8) { background: rgba(248,238,255,0.7); }
.ana-section:nth-child(9) { background: rgba(255,242,238,0.7); }
.ana-section:nth-child(10) { background: rgba(238,245,255,0.7); }
.ana-section:nth-child(11) { background: rgba(240,255,250,0.7); }

.ana-section-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px dashed rgba(233, 30, 99, 0.15);
}

.ana-section:nth-child(1) .ana-section-title { color: #e8557c; }
.ana-section:nth-child(2) .ana-section-title { color: #e0884a; }
.ana-section:nth-child(3) .ana-section-title { color: #d0a030; }
.ana-section:nth-child(4) .ana-section-title { color: #8b7a5e; }
.ana-section:nth-child(5) .ana-section-title { color: #9b5de5; }
.ana-section:nth-child(6) .ana-section-title { color: #5b8def; }
.ana-section:nth-child(7) .ana-section-title { color: #d0a030; }
.ana-section:nth-child(8) .ana-section-title { color: #d060e0; }
.ana-section:nth-child(9) .ana-section-title { color: #f07b5e; }
.ana-section:nth-child(10) .ana-section-title { color: #5b8def; }
.ana-section:nth-child(11) .ana-section-title { color: #4aad7a; border-color: rgba(74, 173, 122, 0.2); }

.ana-sub-title {
    font-size: 13px;
    font-weight: 700;
    color: #6a5070;
    margin-top: 10px;
    margin-bottom: 4px;
    padding: 4px 0;
    border-bottom: 1px dotted rgba(180,150,200,0.2);
}

.ana-disclaimer {
    font-size: 12px;
    font-weight: 600;
    color: #8b6e6e;
    text-align: center;
    padding: 10px 14px;
    margin: 12px 0 0;
    background: rgba(255,240,240,0.8);
    border-radius: 10px;
    border: 1.5px solid rgba(200,150,150,0.3);
}

.ana-score-hl {
    font-size: 16px;
    font-weight: 800;
    color: #9b5de5;
    text-align: center;
    padding: 10px 14px;
    margin: 8px 0 12px;
    background: linear-gradient(135deg, rgba(248,238,255,0.8), rgba(255,240,245,0.6));
    border-radius: 10px;
    border: 1.5px solid rgba(180, 100, 220, 0.2);
}

.ana-text {
    font-size: 13.5px;
    color: #6a5070;
    line-height: 1.85;
}

/* raw text fallback */
.ana-raw {
    white-space: pre-wrap;
    line-height: 1.9;
    font-size: 14.5px;
    color: #5a4060;
}

/* ── Generate Button Area ── */
.generate-area {
    text-align: center;
    padding: 8px 0 4px;
}

.generate-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.generate-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7eb3, #c273f0);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
    letter-spacing: 1px;
}

.generate-btn-medical {
    background: linear-gradient(135deg, #5bce8f, #4aad7a);
    box-shadow: 0 6px 20px rgba(74, 173, 122, 0.3);
}

.generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(233, 30, 99, 0.35);
}

.generate-btn-medical:hover {
    box-shadow: 0 8px 28px rgba(74, 173, 122, 0.4);
}

.generate-btn:active {
    transform: scale(0.97);
}

.btn-icon {
    font-size: 16px;
}

.generate-hint {
    color: #c0b0c4;
    font-size: 12px;
    margin-top: 10px;
}

.generate-loading {
    text-align: center;
    padding: 12px 0;
}

.generate-loading .spinner {
    width: 28px;
    height: 28px;
    border: 3px solid #f3e5f5;
    border-top-color: #e91e63;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.generate-loading p {
    color: #b0a0b4;
    font-size: 13px;
}

/* ── Side-by-side Comparison ── */
.comparison-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(100, 180, 240, 0.07);
    border: 1.5px solid rgba(100, 180, 240, 0.1);
}

.comparison-card h2 {
    font-size: 15px;
    text-align: center;
    color: #8090c0;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.comparison-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.comparison-col {
    flex: 1;
    min-width: 0;
}

.comparison-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #a090b0;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.comparison-col img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: block;
}

/* ── Timing & Tips ── */
.timing {
    text-align: center;
    color: #c0b0c4;
    font-size: 12px;
    margin-top: 10px;
}

.tips {
    text-align: center;
    color: #b890c8;
    font-size: 12px;
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(248, 240, 255, 0.6);
    border-radius: 10px;
}

/* ── Error ── */
.error {
    background: #fff0f3;
    color: #d44a6a;
    padding: 14px 20px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    border: 1px solid rgba(220, 80, 100, 0.15);
}

/* ── Retry button ── */
.retry-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff7eb3, #c273f0);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25);
}

/* ── Reset button ── */
.reset-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    font-size: 14px;
    font-weight: 600;
    color: #e8739e;
    background: rgba(255,255,255,0.8);
    border: 2px solid #e8c4d8;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 1px;
}

.reset-btn:hover {
    background: #fff0f5;
    border-color: #ffb8d0;
}
