:root {
    --bg-dark: #0a0404;
    --text-light: #f5eaea;
    --text-muted: #d4aeae;
    --border-color: rgba(255, 117, 140, 0.2);
    --gradient-primary: linear-gradient(to right, #f26f86, #ff7b93, #c5344d);
    --gradient-btn: linear-gradient(135deg, #d33758, #ff6b85);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.page-container {
    max-width: 600px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top, rgba(255, 60, 100, 0.05), transparent 60%);
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.made-with-love {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

.icon-heart-container {
    background: linear-gradient(135deg, #ff4d6d, #b92b47);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
}

.heart-icon {
    width: 24px;
    height: 24px;
}

.digital-product-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--text-muted);
}

/* Main Title */
.title-section {
    text-align: center;
    margin-bottom: 15px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    letter-spacing: -1px;
}

.sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cursive-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: -5px;
}

.cursive-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffb5a7;
}

.drawn-heart {
    width: 40px;
    height: 40px;
    transform: rotate(15deg);
}

.gift-item {
    margin-bottom: 50px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 25px;
}

.divider .line {
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(255, 77, 109, 0.3), transparent);
}

.divider-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: #ff6b85;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.mini-heart {
    width: 14px;
    height: 14px;
}

.tagline {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Image Section */
.image-section {
    position: relative;
    margin-bottom: 20px;
}

.floating-heart, .floating-star {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    z-index: 10;
}

.heart-left {
    top: -25px;
    left: 30%;
    transform: rotate(-15deg);
}

.heart-right {
    top: -10px;
    right: 5%;
    transform: rotate(20deg);
}

.image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Letter Section */
.letter-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.letter-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #ff9eaf;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inline-heart {
    width: 35px;
    height: 35px;
}

.letter-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #dfc8c8;
}

/* Action Button */
.unlock-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: var(--gradient-btn);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 20px rgba(211, 55, 88, 0.3);
    text-decoration: none;
}

.unlock-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(211, 55, 88, 0.4);
}

.gold-btn {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.gold-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.lock-icon {
    width: 18px;
    height: 18px;
}

.footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
