/* ðŸŽ¨ SupplyStars - Ð¢ÐµÐ¼Ð½Ð°Ñ Ñ‚ÐµÐ¼Ð° Ñ glassmorphism */

:root {
    /* ÐžÑÐ½Ð¾Ð²Ð½Ñ‹Ðµ Ñ†Ð²ÐµÑ‚Ð° */
    --bg-primary: #0A0E1A;
    --bg-secondary: #12172B;
    --bg-elevated: rgba(255, 255, 255, 0.05);
    
    /* ÐÐºÑ†ÐµÐ½Ñ‚Ð½Ñ‹Ðµ */
    --accent-primary: #3B82F6;
    --accent-secondary: #8B5CF6;
    --gradient-main: linear-gradient(135deg, #3B82F6, #8B5CF6);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
    
    /* Ð¢ÐµÐºÑÑ‚ */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    
    /* Ð¡Ñ‚Ð°Ñ‚ÑƒÑÑ‹ */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    
    /* Ð­Ñ„Ñ„ÐµÐºÑ‚Ñ‹ */
    --blur: blur(20px);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Ð Ð°Ð·Ð¼ÐµÑ€Ñ‹ */
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --border-radius-lg: 32px;
    --spacing: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    -webkit-user-select: none;
}

#app {
    min-height: 100vh;
    padding-bottom: 80px;
}

/* =============== Loader =============== */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-elevated);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============== Header =============== */

.header {
    background: linear-gradient(180deg, rgba(18, 23, 43, 0.95) 0%, rgba(18, 23, 43, 0.98) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: none;
    padding: 12px 16px;
    padding-bottom: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    /* iOS-ÑÑ‚Ð¸Ð»ÑŒ: Ð·Ð°ÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð¸Ðµ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ ÑÐ½Ð¸Ð·Ñƒ */
    border-radius: 0 0 24px 24px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 
        0 3px 12px rgba(59, 130, 246, 0.3),
        0 0 0 2px rgba(59, 130, 246, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 
        0 4px 16px rgba(59, 130, 246, 0.4),
        0 0 0 3px rgba(59, 130, 246, 0.15);
}

.user-details {
    min-width: 0;
    flex: 1;
}

.user-details h2 {
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-id {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€ Ð´Ð»Ñ Ð±Ð°Ð»Ð°Ð½ÑÐ° Ñ Ð·Ð°ÐºÑ€ÑƒÐ³Ð»ÐµÐ½Ð½Ñ‹Ð¼ Ñ„Ð¾Ð½Ð¾Ð¼ */
.balance-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    min-width: fit-content; /* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ñ€ÑƒÐµÑ‚ÑÑ Ð¿Ð¾Ð´ Ñ€Ð°Ð·Ð¼ÐµÑ€ ÐºÐ¾Ð½Ñ‚ÐµÐ½Ñ‚Ð° */
}

.balance-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.balance-display {
    text-align: right;
}

.balance-label {
    font-size: 9px; /* ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ñ€Ð°Ð·Ð¼ÐµÑ€, JS Ð±ÑƒÐ´ÐµÑ‚ ÐµÐ³Ð¾ Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑÐºÐ¸ Ð¼ÐµÐ½ÑÑ‚ÑŒ */
    color: var(--text-secondary);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-weight: 500;
    transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.balance-value {
    font-size: 22px; /* ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ñ€Ð°Ð·Ð¼ÐµÑ€, JS Ð±ÑƒÐ´ÐµÑ‚ ÐµÐ³Ð¾ Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑÐºÐ¸ Ð¼ÐµÐ½ÑÑ‚ÑŒ */
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    white-space: nowrap; /* ÐÐµ Ð¿ÐµÑ€ÐµÐ½Ð¾ÑÐ¸Ð¼ Ñ‚ÐµÐºÑÑ‚ */
}

.balance-currency {
    font-size: 16px; /* ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ñ‹Ð¹ Ñ€Ð°Ð·Ð¼ÐµÑ€, JS Ð±ÑƒÐ´ÐµÑ‚ ÐµÐ³Ð¾ Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑÐºÐ¸ Ð¼ÐµÐ½ÑÑ‚ÑŒ */
    margin-left: 2px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    transition: font-size 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Индикатор синхронизации */
.sync-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 10px;
    font-size: 9px;
    color: #60A5FA;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInSync 0.3s ease-out forwards;
    pointer-events: none; /* Не блокирует клики когда скрыт */
    z-index: 50; /* Ниже навигации */
}

@keyframes fadeInSync {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.sync-spinner {
    width: 9px;
    height: 9px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-top-color: #60A5FA;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Анимация обновления баланса */
.balance-pulse {
    animation: balance-update 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes balance-update {
    0% { 
        transform: scale(1);
        color: var(--text-primary);
    }
    25% { 
        transform: scale(1.15);
        color: #10B981;
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
    50% { 
        transform: scale(1.1);
        color: #10B981;
    }
    75% { 
        transform: scale(1.05);
    }
    100% { 
        transform: scale(1);
        color: var(--text-primary);
        text-shadow: none;
    }
}

/* =============== Main Content =============== */

.main-content {
    padding: var(--spacing);
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

/* =============== Cards =============== */

.card {
    padding: 24px;
    border-radius: var(--border-radius);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

/* =============== Inputs =============== */

.input-amount {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.input-amount:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 0 0 4px rgba(59, 130, 246, 0.1),
        0 4px 16px rgba(59, 130, 246, 0.2);
    transform: scale(1.01);
}

.input-amount::placeholder {
    color: var(--text-tertiary);
}

/* =============== Buttons =============== */

.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-accent {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-accent:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-accent:active {
    transform: translateY(0) scale(0.98);
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.btn-amount {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.btn-amount:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.btn-amount:active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(0.95);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-primary);
    text-decoration: underline;
    cursor: pointer;
    padding: 4px 0;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: #60A5FA;
    transform: translateX(2px);
}

/* =============== Verification Warning =============== */

.verification-warning {
    margin-top: 12px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    border-radius: var(--border-radius);
    color: var(--error);
    font-size: 14px;
    text-align: center;
}

/* =============== Transactions =============== */

.transactions-list {
    max-height: 300px;
    overflow-y: auto;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-type {
    font-size: 14px;
    font-weight: 600;
}

.transaction-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.transaction-amount {
    font-size: 18px;
    font-weight: 700;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--error);
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== Bottom Navigation =============== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: var(--bg-elevated);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
    -webkit-tap-highlight-color: transparent;
}

.nav-item:active {
    background: var(--bg-secondary);
    transform: scale(0.95);
}

.nav-item.active {
    color: var(--accent-primary);
    background: var(--bg-elevated);
}

.nav-icon {
    font-size: 24px;
}

.nav-label {
    font-size: 12px;
}

/* =============== Modal =============== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--spacing);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    width: 100%;
    max-width: 400px;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.modal-content h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.modal-content .btn {
    margin-top: 12px;
}

.modal-content .input-amount {
    margin: 20px 0;
}

/* =============== Toast =============== */

.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-elevated);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =============== Scrollbar =============== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 3px;
}

/* =============== Responsive =============== */

@media (max-width: 480px) {
    .header {
        padding: 10px 12px;
        padding-bottom: 14px;
        border-radius: 0 0 20px 20px;
    }
    
    .avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .user-details h2 {
        font-size: 15px;
    }
    
    .balance-container {
        padding: 6px 12px;
        border-radius: 14px;
    }
    
    .balance-label {
        font-size: 8px;
    }
    
    .balance-value {
        font-size: 20px;
    }
    
    .balance-currency {
        font-size: 14px;
    }
    
    .card {
        padding: 16px;
    }
}

/* =============== Pages =============== */

.page {
    display: none;
}

.page.active {
    display: block;
}

/* =============== Guide Content =============== */

.guide-content {
    padding: 8px 0;
}

.guide-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 8px 0;
    color: var(--text-primary);
}

.guide-content h4:first-child {
    margin-top: 0;
}

.guide-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.guide-content code {
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    color: var(--accent-primary);
    font-size: 13px;
}

/* =============== Stats Grid =============== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.stat-item {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    word-wrap: break-word; /* ÐŸÐµÑ€ÐµÐ½Ð¾ÑÐ¸Ð¼ Ð´Ð»Ð¸Ð½Ð½Ñ‹Ðµ Ñ‡Ð¸ÑÐ»Ð° ÐµÑÐ»Ð¸ Ð½ÑƒÐ¶Ð½Ð¾ */
    line-height: 1.2;
}

/* =============== Username Warning Button Hover =============== */

#closeAppBtn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.6);
}

#closeAppBtn:active {
    transform: scale(0.98);
}

/* =============== Remind Later Button =============== */

#remindLaterBtn {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 6px 24px rgba(245, 158, 11, 0.5);
    }
}

#remindLaterBtn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.5) !important;
}

#remindLaterBtn:active {
    transform: translateY(0) scale(0.98) !important;
}

