:root {
    --valentin-pink: #FFB7C5;
    --valentin-red: #E91E63;
    --valentin-dark-red: #C2185B;
    --rose-gold: #B76E79;
    --white: #FFFFFF;
    --soft-white: #FFF0F5;
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--valentin-pink) 0%, #FFC1CC 100%);
    color: #555;
    font-family: var(--font-body);
    font-weight: 300;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--valentin-dark-red);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

.section-title::after {
    content: '❤';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--valentin-red);
}

.section-title::before {
    content: '❤';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--valentin-red);
}

/* Components */
.love-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.love-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--valentin-red);
}

.btn-love {
    background: var(--valentin-red);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-love:hover {
    background: var(--valentin-dark-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
    text-decoration: none;
}

/* Hero */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, #FFF0F5 0%, #FFB7C5 100%);
}

#heartsCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

.heart-frame {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    /* Heart shape clip-path or simple border-radius for ease, aiming for elegant circle with heart decor */
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.2);
}

.heart-frame::after {
    content: '❤';
    position: absolute;
    bottom: 0;
    right: 15px;
    font-size: 3rem;
    color: var(--valentin-red);
    transform: rotate(15deg);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.hero-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--valentin-pink);
}

/* Countdown */
.love-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.love-time-box {
    text-align: center;
}

.love-time-box span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--valentin-red);
    display: block;
    line-height: 0.9;
}

.love-time-box small {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
}

/* Audio */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-love {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--valentin-red);
    border-radius: 50%;
    color: var(--valentin-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.btn-music-love:hover {
    background: var(--valentin-red);
    color: white;
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--soft-white);
    color: var(--rose-gold);
    padding: 3rem 0;
    border-top: 1px solid var(--valentin-pink);
}