/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* SUNSET THEME - JAN 25 (Purple → Yellow → Orange) */
    --primary-purple: #9B51E0;
    --primary-yellow: #FFE500;
    --primary-orange: #FFA500;
    
    /* Background Colors - Purple Tinted */
    --bg-dark: #1a0a2e;
    --bg-card: #2d1b4e;
    --bg-card-hover: #3d2b5e;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #d4c5f9;
    --text-muted: #b8a3d1;
    
    /* Accent Colors */
    --accent-success: #FFE500;
    --accent-warning: #FFA500;
    
    /* Border & Shadow */
    --border-radius: 16px;
    --border-radius-small: 12px;
    --shadow-glow: 0 8px 32px rgba(155, 81, 224, 0.3);
    --shadow-sunset-glow: 0 8px 32px rgba(255, 229, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ===================================
   HERO BANNER ONLY
   =================================== */
.hero-banner {
    display: none; /* Hidden on mobile */
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: hue-rotate(30deg) saturate(1.2); /* Purple tint to banner */
}

/* Show hero on desktop */
@media (min-width: 768px) {
    .hero-banner {
        display: block;
    }
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 40px 24px;
    }
}

/* ===================================
   LOGO
   =================================== */
.logo-container {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 229, 0, 0.4)); /* Sunset glow */
}

@media (min-width: 768px) {
    .logo {
        max-width: 400px;
    }
}

/* ===================================
   PROGRESS BAR
   =================================== */
.progress-container {
    margin-bottom: 32px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-card);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-yellow));
    border-radius: 100px;
    transition: width 0.3s ease;
    width: 50%;
}

.progress-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

/* ===================================
   FORM STEPS
   =================================== */
.form-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.form-step.active {
    display: block;
}

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

/* ===================================
   STEP HEADER
   =================================== */
.step-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    background-image: 
        linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.step-header.vip {
    background-image: 
        linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(135deg, var(--primary-purple), var(--primary-yellow), var(--primary-orange));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-header h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-header.vip h2 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

/* ===================================
   FORM GROUPS
   =================================== */
.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 540px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* ===================================
   TEXT INPUTS
   =================================== */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(155, 81, 224, 0.2);
}

input::placeholder {
    color: var(--text-muted);
}

/* ===================================
   CHECKBOX CARDS
   =================================== */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.checkbox-group.days-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.checkbox-card.compact .checkbox-content {
    padding: 12px;
    justify-content: center;
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.2), rgba(255, 229, 0, 0.15));
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.checkbox-card:hover .checkbox-content {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.checkbox-icon {
    font-size: 24px;
}

.checkbox-label {
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   RADIO CARDS
   =================================== */
.radio-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 540px) {
    .radio-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked + .radio-content {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.2), rgba(255, 229, 0, 0.15));
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.radio-card:hover .radio-content {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.radio-icon {
    font-size: 20px;
}

.radio-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

/* ===================================
   VIP CHOICE CARDS
   =================================== */
.vip-choice {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.choice-card {
    cursor: pointer;
    display: block;
}

.choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.choice-content {
    padding: 24px;
    background: var(--bg-card);
    border: 3px solid transparent;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.choice-card.choice-yes input[type="radio"]:checked + .choice-content {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.15), rgba(0, 217, 255, 0.15));
    border-color: #00FFA3;
    box-shadow: 0 8px 32px rgba(0, 255, 163, 0.3);
}

.choice-card.choice-no input[type="radio"]:checked + .choice-content {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.15), rgba(155, 81, 224, 0.1));
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.choice-card:hover .choice-content {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.choice-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.choice-icon {
    font-size: 32px;
}

.choice-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.choice-card.choice-yes .choice-title {
    font-size: 16px;
    line-height: 1.4;
    display: block;
}

.choice-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-left: 44px;
}

/* ===================================
   VIP DETAILS
   =================================== */
.vip-details {
    animation: fadeSlideIn 0.4s ease;
}

/* ===================================
   DONATION INFO TOOLTIP
   =================================== */

/* Info Icon Styling */
.info-icon {
    display: inline-block;
    margin-left: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s;
    user-select: none;
}

.info-icon:hover {
    transform: scale(1.2);
}

/* Donation Info Tooltip - GOLD ACCENT */
.donation-info {
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 20px;
    background: rgba(255, 229, 0, 0.1);
    border-left: 4px solid var(--primary-yellow);
    border-radius: var(--border-radius-small);
    animation: slideDown 0.3s ease-out;
}

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

.donation-info-content h4 {
    color: var(--primary-yellow);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.donation-info-content p {
    color: var(--text-secondary);
    margin: 8px 0;
    line-height: 1.6;
    font-size: 15px;
}

.donation-info-content ul {
    color: var(--text-secondary);
    margin: 8px 0 16px 20px;
    line-height: 1.8;
}

.donation-info-content ul li {
    margin: 4px 0;
}

.donation-breakdown {
    margin-top: 16px;
}

.donation-info-content .donation-highlight {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 229, 0, 0.3);
}

.donation-info-content strong {
    color: var(--text-primary);
}

/* ===================================
   BUTTONS - UPDATED WITH LARGER SIZES & SUNSET GRADIENT
   =================================== */

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: var(--border-radius-small);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    min-height: 65px;
}

/* PRIMARY BUTTON - SUNSET GRADIENT (Larger) */
.btn-primary {
    background: linear-gradient(90deg, 
        #9B51E0 0%,
        #D946EF 20%,
        #FF6B9D 40%,
        #FF8C69 60%,
        #FFB84D 80%,
        #FFE500 100%
    );
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.5);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    font-size: 20px;
    padding: 22px 48px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 107, 157, 0.7);
    filter: brightness(1.1);
}

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

/* SECONDARY BUTTON - Larger, Purple Border */
.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 700;
    min-height: 60px;
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

/* BUTTON GROUP LAYOUT */
.button-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}

/* Desktop: Back button on left, primary on right */
@media (min-width: 540px) {
    .button-group {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 20px;
    }
    
    .btn-primary {
        width: auto;
        min-width: 250px;
    }
    
    .btn-secondary {
        width: auto;
        min-width: 140px;
    }
}

/* ===================================
   MOBILE BUTTON FIXES - UPDATED
   =================================== */

@media (max-width: 768px) {
    .btn {
        padding: 22px 40px !important;
        font-size: 19px !important;
        min-height: 65px;
        font-weight: 800;
    }
    
    .btn-primary {
        padding: 24px 48px !important;
        font-size: 21px !important;
        min-height: 70px;
        font-weight: 800 !important;
    }
    
    .btn-secondary {
        padding: 20px 36px !important;
        font-size: 18px !important;
        min-height: 65px;
        font-weight: 700 !important;
    }
    
    .button-group {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .button-group .btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 26px 50px !important;
        font-size: 22px !important;
        min-height: 75px;
        font-weight: 800 !important;
        letter-spacing: 0.5px;
    }
    
    .btn-secondary {
        padding: 22px 40px !important;
        font-size: 19px !important;
        min-height: 70px;
    }
    
    .button-group {
        gap: 20px;
        margin-top: 32px;
    }
}

/* ===================================
   CONFIRMATION SCREEN - RAINBOW BORDER MAINTAINED
   =================================== */
.confirmation-content {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    /* Keep rainbow for confirmation to maintain brand identity */
    background-image: 
        linear-gradient(var(--bg-card), var(--bg-card)),
        linear-gradient(135deg, 
            #FF0000, #FF7F00, #FFFF00, #00FF00, 
            #0000FF, #4B0082, #9400D3
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.confirmation-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: bounce 1s ease infinite;
}

.confirmation-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-message {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.confirmation-details {
    background: rgba(155, 81, 224, 0.1);
    padding: 20px;
    border-radius: var(--border-radius-small);
    margin-bottom: 32px;
    text-align: left;
}

.confirmation-details p {
    margin: 8px 0;
    color: var(--text-primary);
}

.confirmation-details strong {
    color: var(--primary-yellow);
}

/* ===================================
   LOADING OVERLAY - FIXED TO HIDE PROPERLY
   =================================== */
.loading-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--bg-card);
    border-top-color: var(--primary-purple);
    border-right-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    display: none;
}

.loading-overlay.active p {
    display: block;
}

/* ===================================
   RESPONSIVE TWEAKS
   =================================== */
@media (max-width: 374px) {
    .step-header h2 {
        font-size: 24px;
    }
    
    .choice-title {
        font-size: 18px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
*:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   CONFIRMATION BUTTON FIX - MOBILE
   Prevents "Back to Home" button from bleeding off screen
   =================================== */

/* Make "Back to Home" button fit on mobile */
.confirmation-content .btn {
    width: 100%;
    max-width: 100%;
    padding: 20px 24px;
    font-size: 18px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .confirmation-content {
        padding: 32px 16px;
    }
    
    .confirmation-content .btn {
        padding: 22px 20px !important;
        font-size: 19px !important;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .confirmation-content {
        padding: 24px 12px;
    }
    
    .confirmation-content .btn {
        padding: 24px 16px !important;
        font-size: 20px !important;
    }
}
/* ===================================
   STEP 1 HEADER SIZE REDUCTION - MOBILE
   Makes header more compact so users see name field
   Title size UNCHANGED per user request
   =================================== */

@media (max-width: 768px) {
    /* Reduce Step 1 header padding */
    #step1 .step-header {
        padding: 16px 20px;
        margin-bottom: 24px;
    }
    
    /* Make checkmark smaller and closer to title */
    #step1 .step-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }
    
    /* Keep title size the same - DON'T change h2 font-size */
    #step1 .step-header h2 {
        margin-bottom: 6px;
    }
    
    /* Make subtitle more compact */
    #step1 .step-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    /* Add spacing between subtitle paragraphs */
    #step1 .step-subtitle + .step-subtitle {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    /* Extra compact for small phones */
    #step1 .step-header {
        padding: 12px 16px;
        margin-bottom: 20px;
    }
    
    #step1 .step-icon {
        font-size: 32px;
        margin-bottom: 6px;
    }
    
    /* Keep title size - don't reduce */
    #step1 .step-header h2 {
        margin-bottom: 6px;
    }
    
    #step1 .step-subtitle {
        font-size: 13px;
        line-height: 1.4;
    }
}
/* ========================================
   DATE PICKER STYLES
   ======================================== */

/* Date Choice Cards */
.date-choice {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.date-card {
    background: rgba(155, 81, 224, 0.05);
    border: 2px solid rgba(155, 81, 224, 0.2);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.date-card:hover {
    border-color: rgba(155, 81, 224, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155, 81, 224, 0.2);
}

.date-card.selected {
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.15), rgba(255, 107, 157, 0.15));
    border-color: #FFE500;
    box-shadow: 0 12px 32px rgba(255, 229, 0, 0.3);
}

.date-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.date-card-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
}

.date-icon {
    font-size: 48px;
    line-height: 1;
}

.date-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.date-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.date-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.date-info-icon {
    font-size: 16px;
}

/* Loading State */
.loading-dates {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 229, 0, 0.2);
    border-top-color: #FFE500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-dates p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .date-card {
        padding: 20px;
    }

    .date-card-content {
        gap: 16px;
    }

    .date-icon {
        font-size: 36px;
    }

    .date-title {
        font-size: 20px;
    }

    .date-info-row {
        font-size: 13px;
    }
}
/* ... all your existing styles ... */

/* At the very end: */
/* Full date card - bright red, not faded */
.date-card-full {
    cursor: not-allowed !important;
    border: 2px solid #FF0000 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3) !important;
}

.date-card-full:hover {
    transform: none !important;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4) !important;
}

.date-card-full .date-card-date {
    opacity: 1 !important;
}

/* Enhanced selected date border */
.date-card.selected {
    border: 3px solid #FFE500 !important;
    box-shadow: 0 0 20px rgba(255, 229, 0, 0.6), 
                0 0 40px rgba(255, 229, 0, 0.4) !important;
    transform: scale(1.02) !important;
    background: linear-gradient(135deg, rgba(155, 81, 224, 0.25), rgba(217, 70, 239, 0.15)) !important;
}

.date-card.selected::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFE500, #FFA500);
    z-index: -1;
    opacity: 0.3;
}
