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

:root {
    --primary-color: #5D3FD3;
    --secondary-color: #FFD700;
    --success-color: #00C853;
    --danger-color: #FF5252;
    --dark-color: #1a1a3e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Live Ticker */
.live-ticker {
    background: linear-gradient(90deg, var(--dark-color), var(--primary-color), var(--dark-color));
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 40px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

@keyframes tickerScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    padding: 20px;
    text-align: center;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header h1 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.balance-container {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.balance, .winnings {
    font-size: 0.9rem;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    background: white;
    padding: 5px;
    margin: 0 15px;
    border-radius: var(--border-radius);
    gap: 2px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-tab {
    flex: 1;
    padding: 12px 8px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nav-tab.active {
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(93, 63, 211, 0.4);
}

.nav-tab i {
    font-size: 18px;
}

/* Tab Content */
.tab-content {
    padding: 20px;
    min-height: 500px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Scratch Game */
.game-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.scratch-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 300px;
}

#scratch {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    background: transparent;
    border-radius: 15px;
    cursor: grab;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
    width: 100%;
    height: 100%;
}

.scratch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    z-index: 4;
}

.scratch-instruction {
    color: white;
    text-align: center;
    padding: 20px;
}

.scratch-instruction i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.scratch-instruction p {
    font-size: 1.1rem;
    font-weight: 600;
}

.prize-display {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 400px;
}

.prize-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.prize-value.revealed {
    animation: popIn 400ms cubic-bezier(.2,.9,.35,1.5);
}
@keyframes popIn {
    0% { transform: scale(0.8); filter: blur(2px); opacity: 0; }
    60% { transform: scale(1.1); filter: blur(0); opacity: 1; }
    100% { transform: scale(1); }
}

.prize-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.result-area {
    margin-bottom: 20px;
}

.result-message {
    padding: 15px;
    border-radius: var(--border-radius);
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 60px;
    transition: var(--transition);
}

.result-message.win {
    background: linear-gradient(135deg, #a8ff78, #78ffd6);
    color: #22543d;
}

.result-message.lose {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #742a2a;
}

.controls {
    display: flex;
    gap: 15px;
}

.btn {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Pulse effect when available */
.btn-primary.available:not(:disabled) {
    animation: pulseCTA 1.4s ease-in-out infinite;
}
@keyframes pulseCTA {
    0% { box-shadow: 0 0 0 0 rgba(102,126,234,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(102,126,234,0); }
    100% { box-shadow: 0 0 0 0 rgba(102,126,234,0); }
}

.btn-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

.btn-withdraw {
    background: linear-gradient(135deg, var(--success-color), #00D4A1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

.btn-withdraw:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Withdraw Tab */
.withdraw-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.withdraw-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.withdraw-card h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.withdraw-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.withdraw-amount, .balance-info, .required-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amount-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.balance-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.required-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--danger-color);
}

.email-input-container {
    margin-bottom: 20px;
}

.email-input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(93, 63, 211, 0.3);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 63, 211, 0.2);
    outline: none;
}

.email-input.error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.2);
}

.email-error {
    color: var(--danger-color);
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.withdraw-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    color: var(--text-light);
}

.withdraw-history {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.withdraw-history h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.history-amount {
    font-weight: 600;
    color: var(--success-color);
}

.history-status {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--success-color);
}

.no-history {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    padding: 20px 0;
}

/* Stats Tab */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card, .leaderboard-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.stat-card h3, .leaderboard-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: var(--border-radius);
    background: rgba(93, 63, 211, 0.05);
}

.leader-item.current-user {
    background: rgba(93, 63, 211, 0.15);
    border: 1px solid var(--primary-color);
}

.leader-rank {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    margin-right: 10px;
}

.leader-name {
    flex: 1;
    font-weight: 600;
}

.leader-points {
    color: var(--success-color);
    font-weight: 700;
}

/* Celebration */
.celebration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s;
}

.celebration.active {
    opacity: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(93, 63, 211, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.win-modal .win-emoji {
    font-size: 80px;
    margin-bottom: 20px;
}

.win-modal h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.win-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--success-color);
    margin-bottom: 20px;
}

.withdraw-modal .withdraw-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.withdraw-modal h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.withdraw-modal p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.queue-info {
    background: rgba(0, 200, 83, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
}

.queue-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.queue-item:last-child {
    margin-bottom: 0;
}

.queue-label {
    color: var(--text-light);
}

.queue-value {
    font-weight: 700;
    color: var(--primary-color);
}

/* New Scratch Card Design */
.scratch-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    color: white;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1;
}

/* Rarity styles */
.scratch-card.rarity-common {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.scratch-card.rarity-rare {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15) inset, 0 10px 30px rgba(74,0,224,0.35);
}
.scratch-card.rarity-epic {
    background: radial-gradient(circle at 30% 30%, #FFEE58, #FDD835 40%, #F57F17 100%);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.25) inset, 0 12px 40px rgba(253, 216, 53, 0.45);
    animation: epicGlow 2.5s ease-in-out infinite;
}

@keyframes epicGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255,215,0,0.0)); }
    50% { filter: drop-shadow(0 0 12px rgba(255,215,0,0.4)); }
}

.rarity-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: rgba(0,0,0,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
}
.scratch-card.rarity-common .rarity-badge { background: linear-gradient(135deg, rgba(79,172,254,0.8), rgba(0,242,254,0.8)); }
.scratch-card.rarity-rare .rarity-badge { background: linear-gradient(135deg, rgba(142,45,226,0.8), rgba(74,0,224,0.8)); }
.scratch-card.rarity-epic .rarity-badge { background: linear-gradient(135deg, rgba(255,214,0,0.9), rgba(255,149,0,0.9)); color: #3b2900; }

/* Sheen overlay for professional feel */
.scratch-sheen {
    position: absolute;
    width: 140px;
    height: 140px;
    pointer-events: none;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(255,255,255,0.28), rgba(255,255,255,0.0) 70%);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.15s ease-out;
    will-change: transform, opacity;
    z-index: 3;
}

.prize-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.prize-amount {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.congrats-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.instruction-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Cooldown Indicator */
.cooldown-indicator {
    background: rgba(93, 63, 211, 0.08);
    border-radius: var(--border-radius);
    padding: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: none;
    text-align: center;
}

.cooldown-indicator.ready {
    display: block;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.05));
    color: var(--success-color);
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.cooldown-indicator.blocked {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #5a1a1a;
    font-size: 1.1rem;
    font-weight: 800;
}

/* Enhanced Cooldown Indicator Styles */
.cooldown-indicator.blocked.short {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    color: #ff9800;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.cooldown-indicator .timer {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 8px;
    min-width: 40px;
    text-align: center;
    display: inline-block;
}

/* Scratch Progress */
.scratch-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
    width: 80%;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), #fff59d, var(--secondary-color));
    background-size: 200% 100%;
    animation: progressShine 2s linear infinite;
    width: 0%;
    transition: width 0.25s ease;
}

@keyframes progressShine {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

/* Ad Zone Info */
.ad-zone-info {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 500px) {
    .app-container {
        border-radius: 15px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .balance-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-tabs {
        margin: 0 10px;
    }
    
    .tab-content {
        padding: 15px;
    }
    
    .scratch-container {
        height: 250px;
    }
    
    .controls {
        flex-direction: column;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .prize-amount {
        font-size: 2.5rem;
    }
    
    .congrats-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .header h1 {
        font-size: 1.3rem;
    }
    
    .nav-tab span {
        font-size: 10px;
    }
    
    .scratch-container {
        height: 220px;
    }
    
    .prize-amount {
        font-size: 2rem;
    }
}

/* Motivator banner + daily info */
.motivator-banner {
    background: linear-gradient(135deg, #e6f2ff, #f3ecff);
    border: 1px solid rgba(93,63,211,0.18);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.motivator-banner .motivator-text { color: var(--primary-color); font-weight: 800; }
.motivator-banner .daily-info { color: var(--text-light); font-weight: 700; font-size: 12px; }
.motivator-banner.motivator-gold {
    background: linear-gradient(135deg, #fff3cf, #ffe6a1);
    border-color: rgba(255,193,7,0.4);
}

/* SE2 Offer list */
.offer-list { display: flex; flex-direction: column; gap: 12px; }
.offer-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--box-shadow);
}
.offer-main { display: flex; align-items: center; justify-content: space-between; }
.offer-title { font-weight: 800; color: var(--primary-color); }
.offer-potential { color: var(--text-light); font-weight: 700; }
.offer-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.pw-wrap { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.pw-input { width: 100%; padding: 10px; border: 2px solid rgba(93,63,211,0.25); border-radius: 10px; }
.pw-input:focus { border-color: var(--primary-color); outline: none; box-shadow: 0 0 0 3px rgba(93,63,211,0.15); }
.row-status { font-size: 12px; color: var(--text-light); min-height: 16px; }
.row-status.success { color: var(--success-color); font-weight: 800; }
.row-status.error { color: #b00020; font-weight: 800; }

@media (min-width: 480px) {
    .offer-actions { grid-template-columns: auto 1fr; align-items: center; }
}

.empty-offers {
    padding: 14px;
    text-align: center;
    color: var(--text-light);
    background: #f7fafc;
    border: 1px dashed rgba(0,0,0,0.1);
    border-radius: 12px;
}

/* Reset sections */
.reset-section { margin-top: 14px; background: #f7fafc; border: 1px solid rgba(0,0,0,0.05); border-radius: 12px; padding: 12px; }
.reset-section.hidden { display: none; }
.reset-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; margin-top: 8px; }
.reset-status { margin-top: 6px; font-size: 12px; color: var(--text-light); min-height: 16px; }
.reset-status.success { color: var(--success-color); font-weight: 800; }
.reset-status.error { color: #b00020; font-weight: 800; }
.reset-note { color: var(--text-light); font-size: 12px; }

/* Easter egg trigger */
.easter-egg { margin-top: 10px; text-align: center; font-size: 11px; color: var(--text-light); user-select: none; }
.easter-egg:focus { outline: none; text-decoration: underline dashed; }

.se2-howto {
    background: #f7fafc;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
}
.se2-howto h4 {
    margin-bottom: 6px;
    color: var(--primary-color);
}
.se2-howto ol {
    padding-left: 18px;
    color: var(--text-light);
}
.se2-howto .note {
    color: var(--text-light);
    font-size: 12px;
    margin-top: 8px;
    font-style: italic;
}