:root {
    --primary-color: #ff6961;
    --secondary-color: #ffb7b2;
    --accent-color: #d32f2f;
    --bg-color: #fff0f5;
    --text-color: #4a4a4a;
    --card-bg: rgba(255, 255, 255, 0.9);
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #fad0c4, #fbc2eb, #a18cd1, #fad0c4);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.background-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    z-index: 0;
    overflow: hidden;
}

.bg-item {
    position: absolute;
    /* Font size removed, sizing handled by JS width/height */
    user-select: none;
    will-change: transform, opacity;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.bg-item svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    opacity: 0.8;
}

.depth-1 {
    filter: blur(2px);
    z-index: 1;
    opacity: 0.6;
}

.depth-2 {
    filter: blur(1px);
    z-index: 2;
    opacity: 0.8;
}

.depth-3 {
    filter: blur(0px);
    z-index: 3;
    opacity: 1.0;
}

.container {
    z-index: 10;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    perspective: 1000px;
}

/* Floating Info Pills */
.floating-info {
    position: absolute;
    top: -60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Text for Numbers */
#counter-value {
    display: inline-block;
    background: linear-gradient(45deg, #ff3366, #ff9933);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    margin-left: 4px;
}

.top-left {
    left: 0;
}

.top-right {
    right: 0;
}

/* Global Spacing Fixes */
.counter-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    /* Global Gap enforced */
}

.small-timer {
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 5px;
    /* Desktop default (stacked usually, but flex handles it) */
    color: #666;
    margin-left: 0;
}

/* Specifics for the counter pill - Global */
#engagement-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    body {
        align-items: center;
        padding-top: 0;
    }

    .container {
        margin-top: 80px;
        width: 90%;
    }

    .floating-info {
        top: -55px;
        padding: 6px 14px;
        font-size: 0.70rem;
        height: 34px;
    }

    #engagement-counter {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center;
        max-width: 85%;
    }

    .counter-row {
        margin-right: 15px !important;
    }

    .small-timer {
        font-size: 0.7rem;
        margin-top: 0;
        margin-left: 5px !important;
        padding-left: 15px;
        border-left: 1px solid rgba(0, 0, 0, 0.2);
        color: #d32f2f;
        font-weight: bold;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    .card {
        padding: 1.5rem 1rem;
        min-height: auto;
        width: 100%;
        margin: 0;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .visual {
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
    }

    p.quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .signature {
        font-size: 1.1rem;
        bottom: 15px;
        right: 20px;
    }
}

.card {
    background: rgba(255, 255, 255, 0.85);
    padding: 2rem 2rem 5rem 2rem;
    /* Extra bottom padding for safety */
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(20px);
    transition: transform 0.1s ease-out;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
}

.visual,
h1,
.quote,
.signature {
    transform: translateZ(30px);
}

.visual {
    transform: translateZ(50px) scale(1.1);
    animation: heartbeat 1.5s infinite;
    font-size: 5rem;
    margin-bottom: 1rem;
}

.signature {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    transform: rotate(-2deg);
    opacity: 0.8;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
}

h1 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.day-title {
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

p.quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    color: #666;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.2);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(1);
    }
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    position: relative;
    min-height: 60px;
}

.btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-yes {
    background-color: #4CAF50;
    color: white;
}

.btn-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-no {
    background-color: var(--accent-color);
    color: white;
    position: relative;
}

.btn-share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-share:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-fade-out {
    animation: fadeOutText 0.5s forwards;
}

.text-fade-in {
    animation: fadeInText 0.5s forwards;
}

@keyframes fadeOutText {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pop-anim {
    animation: popScale 0.3s;
}

@keyframes popScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
}

.icon-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.celebration-text {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-top: 1rem;
    animation: popIn 0.5s;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Game Styles */
.mobile-game-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
}

.game-toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.game-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.game-toggle-btn:active {
    transform: translateY(0);
}

.game-score-display {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 150;
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: bold;
    border: 2px solid rgba(102, 126, 234, 0.3);
    max-width: 90%;
}

.game-score,
.game-timer {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.game-score span,
.game-timer span {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    font-weight: 800;
}

.game-over-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.game-over-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: popIn 0.5s;
}

.game-over-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: heartbeat 1s infinite;
}

.game-over-content h2 {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-score {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 30px;
}

.final-score span {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    font-weight: 800;
}

.game-over-content .btn {
    margin: 0 10px;
}

/* Game HUD Styles */
.game-hud {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 160;
    width: auto;
    min-width: 300px;
    max-width: 95%;
}

.game-hud-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 245, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.hud-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hud-icon {
    font-size: 1.4rem;
}

.hud-value {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #d32f2f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 35px;
    text-align: center;
}

.hud-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.hud-divider {
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(211, 47, 47, 0.3), transparent);
}

/* Play ID Styles */
.play-id {
    font-size: 1rem;
    font-weight: 700;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.final-play-id {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Bouquet Collection Container */
.bouquet-container {
    position: fixed;
    bottom: 100px;
    right: 15px;
    z-index: 140;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.bouquet-wrapper {
    position: relative;
    width: 120px;
    height: 160px;
}

/* Paper Wrap */
.bouquet-paper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 70px;
    background: linear-gradient(135deg, #ffd1dc 0%, #ffb6c1 50%, #ff9eb5 100%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    border-radius: 0 0 5px 5px;
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.bouquet-paper::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
}

/* Ribbon */
.bouquet-ribbon {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: linear-gradient(to bottom, #ff6b6b 0%, #d32f2f 50%, #b71c1c 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}

.bouquet-ribbon::before,
.bouquet-ribbon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    width: 20px;
    height: 25px;
    background: linear-gradient(to bottom, #ff6b6b, #d32f2f);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}

.bouquet-ribbon::before {
    left: 25px;
    transform: rotate(-10deg);
}

.bouquet-ribbon::after {
    right: 25px;
    transform: rotate(10deg);
}

/* Flowers Area */
.bouquet-flowers {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    z-index: 5;
}

.bouquet-flower {
    position: absolute;
    font-size: 1.5rem;
    animation: flowerPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transform-origin: bottom center;
}

/* Position each flower to create a natural bouquet arrangement */
.bouquet-flower:nth-child(1) {
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 10;
}

.bouquet-flower:nth-child(2) {
    left: 20%;
    bottom: 30px;
    transform: rotate(-20deg);
    z-index: 8;
}

.bouquet-flower:nth-child(3) {
    left: 65%;
    bottom: 32px;
    transform: rotate(18deg);
    z-index: 8;
}

.bouquet-flower:nth-child(4) {
    left: 35%;
    bottom: 20px;
    transform: rotate(-12deg);
    z-index: 6;
}

.bouquet-flower:nth-child(5) {
    left: 55%;
    bottom: 22px;
    transform: rotate(10deg);
    z-index: 6;
}

.bouquet-flower:nth-child(6) {
    left: 10%;
    bottom: 15px;
    transform: rotate(-25deg);
    z-index: 4;
}

.bouquet-flower:nth-child(7) {
    left: 75%;
    bottom: 18px;
    transform: rotate(22deg);
    z-index: 4;
}

.bouquet-flower:nth-child(8) {
    left: 45%;
    bottom: 10px;
    transform: rotate(5deg);
    z-index: 3;
}

.bouquet-flower:nth-child(9) {
    left: 25%;
    bottom: 5px;
    transform: rotate(-8deg);
    z-index: 2;
}

.bouquet-flower:nth-child(10) {
    left: 60%;
    bottom: 8px;
    transform: rotate(15deg);
    z-index: 2;
}

.bouquet-flower:nth-child(n+11) {
    left: 40%;
    bottom: 0px;
    transform: rotate(0deg);
    z-index: 1;
    opacity: 0.7;
}

@keyframes flowerPop {
    0% {
        transform: scale(0) translateY(30px);
        opacity: 0;
    }

    60% {
        transform: scale(1.2) translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}


/* Tap Feedback Animation */
@keyframes tapFeedback {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.tap-feedback {
    animation: tapFeedback 0.5s ease-out forwards;
}

/* Particle Pulse for Active Game */
.game-active .bg-item {
    cursor: pointer;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .mobile-game-container {
        bottom: 15px;
        width: auto;
    }

    .game-toggle-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .game-score-display {
        top: 70px;
        padding: 8px 16px;
        gap: 12px;
        font-size: 0.85rem;
    }

    .game-score,
    .game-timer {
        font-size: 1rem;
    }

    .game-score span,
    .game-timer span {
        font-size: 1.2rem;
    }

    .game-over-content {
        padding: 30px 20px;
    }

    .game-over-emoji {
        font-size: 3rem;
    }

    .game-over-content h2 {
        font-size: 2rem;
    }

    .final-score {
        font-size: 1.2rem;
    }

    .final-score span {
        font-size: 1.5rem;
    }

    /* Game HUD Mobile */
    .game-hud {
        top: 10px;
        width: 95%;
        max-width: 280px;
    }

    .game-hud-content {
        padding: 10px 15px;
        gap: 15px;
    }

    .hud-icon {
        font-size: 1.2rem;
    }

    .hud-value {
        font-size: 1.4rem;
        min-width: 28px;
    }

    .hud-label {
        font-size: 0.7rem;
    }

    .hud-divider {
        height: 28px;
    }

    /* Bouquet Mobile */
    .bouquet-container {
        bottom: 80px;
        right: 10px;
    }

    .bouquet-wrapper {
        width: 100px;
        height: 140px;
    }

    .bouquet-paper {
        width: 75px;
        height: 60px;
    }

    .bouquet-ribbon {
        bottom: 48px;
        width: 85px;
        height: 14px;
    }

    .bouquet-ribbon::before,
    .bouquet-ribbon::after {
        bottom: -12px;
        width: 16px;
        height: 20px;
    }

    .bouquet-ribbon::before {
        left: 20px;
    }

    .bouquet-ribbon::after {
        right: 20px;
    }

    .bouquet-flowers {
        bottom: 50px;
        width: 60px;
        height: 60px;
    }

    .bouquet-flower {
        font-size: 1.2rem;
    }
}

/* Share Card Styles (Hidden off-screen but rendered) */
.share-card {
    position: fixed;
    left: -9999px;
    top: 0;
    width: 400px;
    height: 600px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe6ee 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 8px solid #ffb7b2;
    font-family: 'Nunito', sans-serif;
    color: #4a4a4a;
    box-sizing: border-box;
    z-index: 1000;
}

.share-card-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff6961;
}

.share-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: #d32f2f;
    margin-bottom: 30px;
}

.share-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.share-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.share-stat-value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #ff6b6b, #d32f2f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.share-stat-label {
    font-size: 1.2rem;
    color: #888;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.share-divider {
    width: 2px;
    height: 60px;
    background: #ffb7b2;
}

.share-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    line-height: 1.5;
    margin-bottom: 40px;
    padding: 0 20px;
}

.share-footer {
    font-weight: bold;
    color: #ff6961;
    font-size: 1.2rem;
    margin-top: auto;
}

/* Share Status Card Theme */
.share-status-theme {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-color: #a18cd1;
}

.status-content {
    border-color: #a18cd1;
    background: rgba(255, 255, 255, 0.95);
}

.status-title {
    color: #6a11cb;
    font-size: 3rem;
}

.status-quote {
    font-size: 1.3rem;
    color: #4a4a4a;
    font-family: 'Dancing Script', cursive;
    margin: 20px 0;
}