/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 0; /* Prevents sticking to top/bottom when scrolling */
    background: linear-gradient(135deg, #fce4ec, #f8bbd0, #e1bee7);
    color: #4a148c;
    overflow-x: hidden;
    overflow-y: auto; /* Allows vertical scrolling */
    position: relative;
}

/* Animated Background Blobs */
.background-animation {
    position: fixed; /* Fixed so it stays in background while scrolling */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #ff80ab;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #ea80fc;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #8c9eff;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Container & Glassmorphism Cards */
.container {
    margin: auto; /* Vertically centers the container when it's smaller than viewport, without cutting it off when larger */
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 500px;
}

.card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.card.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(233, 30, 99, 0.15);
}

.title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #311b92;
    line-height: 1.3;
}

.card-body {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a148c;
    text-align: center;
    margin-bottom: 25px;
}

.card-body p {
    margin-bottom: 15px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border-right: 4px solid #e91e63;
    font-weight: 700;
}

.card-footer {
    text-align: center;
}

/* Buttons */
.btn {
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Tajawal', sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: white;
    color: #e91e63;
    border: 2px solid #e91e63;
}

.btn-secondary:hover {
    background: #fff0f5;
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.85rem;
    color: #7b1fa2;
    margin-top: 15px;
    opacity: 0.8;
}

/* Utilities */
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Quiz Test */
.quiz-question {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px !important;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-btn {
    width: 100%;
    text-align: right;
    padding: 12px 20px;
    font-size: 1.1rem;
}

.quiz-btn.correct {
    background: #4caf50;
    color: white;
    border-color: #4caf50;
}

.quiz-btn.wrong {
    background: #f44336;
    color: white;
    border-color: #f44336;
}

/* Confession Test (Escaping Button) */
.confession-container {
    position: relative;
    min-height: 150px;
}

.confession-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.escape-btn {
    position: relative;
    transition: left 0.2s ease, top 0.2s ease, transform 0.2s ease;
}

/* Captcha Test */
.captcha-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    user-select: none;
    text-align: right;
    font-weight: 500;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 28px;
    width: 28px;
    background-color: #f1f1f1;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    background-color: #e0e0e0;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #4caf50;
    border-color: #4caf50;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Loading Troll Test */
.progress-container {
    width: 100%;
    height: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    transition: width 0.1s linear;
}

.hidden-fix-btn {
    display: inline-block;
    font-size: 0.7rem;
    color: #ccc;
    cursor: pointer;
    margin-top: 30px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.hidden-fix-btn:hover {
    color: #e91e63;
    opacity: 1;
}

/* Fake Mic Test */
.mic-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visualizer {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 50px;
}

.bar {
    width: 10px;
    background: #e91e63;
    border-radius: 5px;
    animation: bounceBar 0.5s infinite alternate ease-in-out;
}

.bar:nth-child(1) { height: 20px; animation-delay: 0.1s; }
.bar:nth-child(2) { height: 40px; animation-delay: 0.3s; }
.bar:nth-child(3) { height: 50px; animation-delay: 0s; }
.bar:nth-child(4) { height: 35px; animation-delay: 0.2s; }
.bar:nth-child(5) { height: 15px; animation-delay: 0.4s; }

@keyframes bounceBar {
    from { transform: scaleY(0.5); }
    to { transform: scaleY(1); }
}

.blink {
    animation: blinkText 1s infinite;
}

@keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Red Button Test */
.btn-danger-huge {
    background: #f44336;
    color: white;
    border: none;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4), inset 0 -5px 15px rgba(0,0,0,0.2);
    transition: all 0.2s;
    font-family: 'Tajawal', sans-serif;
}

.btn-danger-huge:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2);
}

/* Password Test */
.input-group {
    margin: 20px 0;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.2rem;
    border: 2px solid rgba(233, 30, 99, 0.3);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Tajawal', sans-serif;
    color: #e91e63;
    background: rgba(255, 255, 255, 0.8);
}

.input-group input:focus {
    border-color: #e91e63;
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.2);
}

.feedback-msg {
    margin-top: 20px;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Surprise Card (Final Glow-Up) */
.surprise-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.letter-container {
    position: relative;
    text-align: right;
    margin-bottom: 30px;
}

.letter-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.letter-box .big-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #9c27b0;
    margin-bottom: 20px;
}

/* Post-it Note */
.post-it {
    position: relative;
    margin: 40px auto 10px auto;
    background: #fff59d;
    padding: 20px 25px;
    width: 280px;
    transform: rotate(-3deg);
    box-shadow: 2px 4px 10px rgba(0,0,0,0.15);
    font-size: 1rem;
    color: #333;
    font-family: 'Comic Sans MS', 'Tajawal', cursive;
    border-bottom-right-radius: 30px 5px;
    text-align: right;
    z-index: 10;
}

.post-it .pin {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
}

/* Fade Text Animation */
.fade-text {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 4.5s; }
.delay-4 { animation-delay: 6s; }
.delay-5 { animation-delay: 8s; }
.delay-6 { animation-delay: 4.5s; }
.delay-7 { animation-delay: 5s; }
.delay-8 { animation-delay: 5.5s; }
.delay-9 { animation-delay: 6s; }
.delay-10 { animation-delay: 6.5s; }
.delay-11 { animation-delay: 7s; }
.delay-12 { animation-delay: 7.5s; }
.delay-13 { animation-delay: 8s; }

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

/* Polaroid Photo Widget */
/* Polaroids Gallery */
.polaroids-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.polaroid {
    background: #fff;
    padding: 10px 10px 30px 10px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    max-width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.polaroid:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.polaroid-img {
    background: #e0e0e0;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #888;
    font-weight: bold;
    overflow: hidden;
}

.polaroid-caption {
    text-align: center;
    margin-top: 15px;
    font-family: 'Comic Sans MS', cursive;
    color: #555;
    font-size: 1.1rem;
}

/* Music Player Widget */
.music-player {
    background: #1e1e1e;
    border-radius: 16px;
    padding: 20px;
    color: white;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.music-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.music-cover {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e91e63, #ff9800);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.music-details {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.music-title { font-weight: 700; font-size: 1.1rem; }
.music-artist { font-size: 0.85rem; color: #aaa; margin-top: 4px; }

.music-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 1.5rem;
    margin-bottom: 15px;
    cursor: pointer;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-bar {
    width: 100%;
    height: 4px;
    background: #444;
    border-radius: 2px;
}

.music-progress {
    width: 30%;
    height: 100%;
    background: #1db954;
    border-radius: 2px;
}

/* Realistic Receipt Invoice */
.receipt {
    background: white;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    color: #222;
    text-align: left;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.receipt::before, .receipt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    background-size: 20px 20px;
}

.receipt::before {
    top: -10px;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, white 11px);
}

.receipt::after {
    bottom: -10px;
    background-image: radial-gradient(circle at 10px 10px, white 10px, transparent 11px);
}

.receipt-header {
    text-align: center;
    margin-bottom: 20px;
}

.receipt-header h3 { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }

.receipt-items {
    list-style: none;
    margin-bottom: 15px;
    padding: 0;
}

.receipt-items li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.receipt-divider {
    text-align: center;
    margin: 15px 0;
}

.receipt-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.barcode {
    font-family: monospace;
    font-size: 2rem;
    letter-spacing: 3px;
    margin: 15px 0;
}

.declined-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    color: #d32f2f;
    border: 5px solid #d32f2f;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 10;
    text-shadow: 2px 2px 5px rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.6);
}
.stamp-animation {
    animation: stampIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes stampIn {
    0% { transform: translate(-50%, -50%) rotate(-15deg) scale(3); opacity: 0; }
    100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 0.9; }
}

.receipt-footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.action-btn {
    font-size: 1rem;
    padding: 10px 15px;
    flex: 1 1 45%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.15);
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn.active-tab {
    background: linear-gradient(45deg, #e91e63, #9c27b0) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.action-content {
    background: white;
    border: 1px dashed #e91e63;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    animation: fadeIn 0.4s ease-out;
}

/* -------------------------------------
   Fingerprint Scanner (Step 1)
-------------------------------------- */
.fingerprint-btn {
    width: 60px;
    height: 60px;
    background: #f3e5f5;
    border: 2px solid #e91e63;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
    font-size: 1.8rem;
    user-select: none;
    -webkit-user-select: none;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.2);
}
.fingerprint-btn:active, .fingerprint-btn.scanning {
    transform: scale(0.95);
    background: #fce4ec;
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    animation: pulseScan 1s infinite;
}
.fingerprint-btn.success {
    border-color: #4caf50;
    background: #e8f5e9;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
    animation: none;
}
@keyframes pulseScan {
    0% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(233, 30, 99, 0); }
    100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0); }
}

/* -------------------------------------
   Troll Toast Notification (Anti-Cheat)
-------------------------------------- */
.troll-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(45deg, #f44336, #e91e63);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: bold;
    font-size: 1.1rem;
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
}

.troll-toast.show {
    transform: translateX(-50%) translateY(0);
}

.troll-toast .troll-icon {
    font-size: 1.5rem;
}

/* -------------------------------------
   Interactions (Quiz Shake)
-------------------------------------- */
@keyframes shakeScreen {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}
.shake-screen {
    animation: shakeScreen 0.5s;
}

/* -------------------------------------
   Self Destruct Sequence (Final Page)
-------------------------------------- */
.destruct-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    animation: flashAlarm 0.5s infinite;
}

@keyframes flashAlarm {
    0%, 100% { background: rgba(255, 0, 0, 0.2); }
    50% { background: rgba(255, 0, 0, 0.7); }
}

.destruct-timer {
    font-size: 15rem;
    color: white;
    font-family: monospace;
    text-shadow: 0 0 50px red;
    margin: 0;
    animation: pulse 0.5s infinite alternate;
}

.blackout-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #050505;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 2s ease-in-out;
}

.blackout-content {
    color: white;
}

.glitch-text {
    font-size: 1.5rem;
    color: #4caf50;
    font-family: monospace;
    text-align: left;
    opacity: 0;
    transition: opacity 1s;
}
.glitch-text.show {
    opacity: 1;
}

.neon-text {
    font-size: 4rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-shadow:
      0 0 10px #fff,
      0 0 20px #fff,
      0 0 40px #e91e63,
      0 0 80px #e91e63,
      0 0 120px #e91e63;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neon-text.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.random-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
    animation: blinkText 0.5s infinite alternate;
}

@keyframes blinkText {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* -------------------------------------
   Global Utility Classes
-------------------------------------- */
.hidden {
    display: none !important;
}

/* Canvas Confetti */
#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* -------------------------------------
   Gift Action (Golden Voucher)
-------------------------------------- */
@keyframes shakeGift {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-15deg) scale(1.1); }
    50% { transform: rotate(15deg) scale(1.1); }
    75% { transform: rotate(-15deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.shake-gift {
    animation: shakeGift 0.3s ease-in-out;
}

.vip-coupon {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border: 3px dashed #fff;
    border-radius: 15px;
    padding: 20px;
    color: #333;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    margin: 0 auto;
}

.coupon-header {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 2px dashed rgba(255,255,255,0.6);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.coupon-code {
    background: rgba(255,255,255,0.4);
    padding: 10px;
    font-family: monospace;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.coupon-footer {
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.8;
}

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