@import url('https://googleapis.com');

body {
    margin: 0;
    padding: 0;
    background-color: #ffe4e1;
    background-image: url('https://transparenttextures.com');
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

section {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

section.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.4);
    text-align: center;
    max-width: 450px;
    border: 3px solid #ffb6c1;
}

.card.wide { max-width: 800px; }

h1, h2, .message { color: #ff69b4; font-family: 'Pacifico', cursive; }

input {
    padding: 12px;
    border-radius: 15px;
    border: 2px solid #ffb6c1;
    margin-bottom: 20px;
    width: 80%;
    outline: none;
}

button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

button:hover { transform: scale(1.1); background: #ff1493; }

.btn-group { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }

/* Box Effects for Page 4 */
.box-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.box {
    background: #fff0f5;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px dashed #ff69b4;
}

.box:hover {
    background: #ffb6c1;
    color: white;
    transform: translateY(-5px);
}

/* Page 5: Gift Container Specifics */
.gift-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.5);
    text-align: center;
    border: 3px solid #ffb6c1;
    max-width: 400px;
    z-index: 10;
}

.cat-gif {
    width: 180px; /* Adjust size of your PNG here */
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.message { font-size: 28px; margin: 10px 0; }

.btn {
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.yes { background-color: #ff4d6d; color: white; }
.no { background-color: #ffccd5; color: #ff4d6d; }

.final-note {
    margin-top: 20px;
    color: #ff69b4;
    font-style: italic;
}

/* Popups & Sparkles */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.sparkle {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation: explode 0.6s ease-out forwards;
}

@keyframes explode { to { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; } }






@import url('https://googleapis.com');

body {
    margin: 0;
    padding: 0;
    background-color: #ffe4e1;
    background-image: url('https://transparenttextures.com');
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

section {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

section.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.4);
    text-align: center;
    max-width: 450px;
    border: 3px solid #ffb6c1;
}

.card.wide { max-width: 800px; }

h1, h2, .message { color: #ff69b4; font-family: 'Pacifico', cursive; }

input {
    padding: 12px;
    border-radius: 15px;
    border: 2px solid #ffb6c1;
    margin-bottom: 20px;
    width: 80%;
    outline: none;
}

button {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

button:hover { transform: scale(1.1); background: #ff1493; }

.btn-group { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }

/* Box Effects for Page 4 */
.box-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.box {
    background: #fff0f5;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px dashed #ff69b4;
}

.box:hover {
    background: #ffb6c1;
    color: white;
    transform: translateY(-5px);
}

/* Page 5: Gift Container Specifics */
.gift-container {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.5);
    text-align: center;
    border: 3px solid #ffb6c1;
    max-width: 400px;
    z-index: 10;
}

.cat-gif {
    width: 180px; /* Adjust size of your PNG here */
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
}

.message { font-size: 28px; margin: 10px 0; }

.btn {
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

.yes { background-color: #ff4d6d; color: white; }
.no { background-color: #ffccd5; color: #ff4d6d; }

.final-note {
    margin-top: 20px;
    color: #ff69b4;
    font-style: italic;
}

/* Popups & Sparkles */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.popup {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.sparkle {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    pointer-events: none;
    animation: explode 0.6s ease-out forwards;
}

@keyframes explode { to { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; } }