/* ═══════════════════════════════════════════════
   HDFC REGALIA — Premium Credit Card Application
   Mobile-first WebView Theme
   ═══════════════════════════════════════════════ */

:root {
    /* Brand Colors */
    --brand-navy: #0D2137;
    --brand-navy-light: #1A3A5C;
    --brand-gold: #C9A84C;
    --brand-gold-light: #E0C878;
    --brand-gold-dark: #A88B3A;
    --hdfc-blue: #004B87;
    --hdfc-blue-light: #0066B3;

    /* Surface Colors */
    --surface-canvas: #F4F6FA;
    --surface-card: #FFFFFF;
    --surface-card-soft: rgba(255, 255, 255, 0.97);
    --bg-light: #F0F2F5;

    /* Text Colors */
    --text-title: #1A1D21;
    --text-body: #4A5568;
    --text-caption: #8896A6;
    --text-muted: #A0AEC0;
    --text-hint: #B0BCC8;
    --text-primary: #2D3748;
    --text-secondary: #718096;

    /* Status Colors */
    --success-green: #27AE60;
    --success-green-dark: #1E8449;
    --error-red: #E53E3E;
    --error-red-dark: #C53030;
    --error-red-light: #FFF5F5;
    --warning-amber: #F6AD55;

    /* Form Colors */
    --form-dark-blue: #004B87;
    --border-light: #E2E8F0;
    --border-focus: #004B87;
    --input-bg: #F7FAFC;

    /* Step Colors */
    --step-active: #004B87;
    --step-inactive: #CBD5E0;
    --step-text-inactive: #A0AEC0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-card: 0 4px 16px rgba(0,0,0,0.08);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--surface-canvas);
    color: var(--text-body);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Regalia Header ───────────────────────────── */
.regalia-header {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
    padding: 18px 20px;
    text-align: center;
    position: relative;
}

.regalia-header .brand-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--brand-gold);
    margin: 0;
}

.regalia-header .brand-sub {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--brand-gold-light);
    margin-top: 4px;
    opacity: 0.85;
}

/* ─── Navbar ───────────────────────────────────── */
.navbar {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    padding: 0 16px;
    height: 56px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .btn-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-title);
    transition: background 0.2s;
}

.navbar .btn-back:active {
    background: rgba(0,0,0,0.05);
}

.navbar .nav-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--brand-gold-dark);
    margin-left: 4px;
}

/* ─── Step Indicator ───────────────────────────── */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 8px;
    gap: 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--step-active);
    color: #FFFFFF;
}

.step-dot.completed {
    background: var(--success-green);
    color: #FFFFFF;
}

.step-dot.inactive {
    background: var(--step-inactive);
    color: var(--step-text-inactive);
}

.step-line {
    width: 32px;
    height: 2px;
    background: var(--step-inactive);
    flex-shrink: 0;
}

.step-line.completed {
    background: var(--success-green);
}

/* ─── Form Card ────────────────────────────────── */
.form-card {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    margin: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.form-card .section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 4px;
}

.form-card .section-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ─── Form Elements ────────────────────────────── */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    margin-top: 4px;
}

.form-input {
    width: 100%;
    height: 48px;
    background: var(--input-bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-size: 15px;
    color: var(--text-title);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.1);
    background: #FFFFFF;
}

.form-input::placeholder {
    color: var(--text-hint);
}

.form-input.error {
    border-color: var(--error-red);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

textarea.form-input {
    height: auto;
    min-height: 80px;
    padding: 12px 14px;
    resize: vertical;
}

.form-select {
    width: 100%;
    height: 48px;
    background: var(--input-bg);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 14px;
    font-size: 15px;
    color: var(--text-title);
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23718096'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-select:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.1);
}

.form-group {
    margin-bottom: 16px;
}

.form-error {
    font-size: 12px;
    color: var(--error-red);
    margin-top: 4px;
    display: none;
}

.form-error.visible {
    display: block;
}

.field-error-msg {
    background: var(--error-red-light);
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--error-red-dark);
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
    display: none;
    text-align: center;
}

.field-error-msg.visible {
    display: block;
}

/* ─── Mobile Input Container ───────────────────── */
.mobile-input-container {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--input-bg);
    height: 48px;
    transition: border-color 0.2s;
}

.mobile-input-container:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.1);
}

.country-code {
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border-light);
    flex-shrink: 0;
}

.mobile-input-container input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 16px;
    color: var(--text-title);
    outline: none;
    height: 100%;
}

.mobile-input-container input::placeholder {
    color: var(--text-hint);
}

.validation-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
    display: none;
}

.validation-icon.visible {
    display: block;
}

.validation-icon.success { color: var(--success-green); }
.validation-icon.error { color: var(--error-red); }

/* ─── OTP Input ────────────────────────────────── */
.otp-container {
    display: none;
    animation: fadeIn 0.3s ease;
}

.otp-container.visible {
    display: block;
}

.otp-fields {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 12px 0;
}

.otp-field {
    width: 46px;
    height: 52px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--input-bg);
    color: var(--text-title);
    outline: none;
    transition: all 0.2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.otp-field:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(0, 75, 135, 0.15);
    transform: scale(1.06);
    background: #FFFFFF;
}

.otp-field.filled {
    border-color: var(--success-green);
    background: rgba(39, 174, 96, 0.05);
}

/* ─── Checkbox ─────────────────────────────────── */
.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    cursor: pointer;
}

.consent-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--hdfc-blue);
    cursor: pointer;
}

.consent-check label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

/* ─── Buttons ──────────────────────────────────── */
.btn-primary {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--hdfc-blue) 0%, var(--hdfc-blue-light) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: #FFFFFF;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    right: 16px;
    top: 50%;
    margin-top: -10px;
}

.btn-gold {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-gold:active {
    transform: scale(0.97);
}

/* ─── Welcome Page ─────────────────────────────── */
.welcome-hero {
    background: linear-gradient(160deg, #0D2137 0%, #1A3A5C 40%, #234A6E 100%);
    padding: 24px 20px;
}

.welcome-hero .hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-top: 16px;
}

.welcome-hero .hero-subtitle {
    font-size: 14px;
    color: #D3DEEE;
    line-height: 1.4;
    margin-top: 8px;
}

.welcome-hero .card-image {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 18px auto 0;
}

/* ─── Carousel ─────────────────────────────────── */
.carousel-section {
    background: #FFFFFF;
    padding: 16px;
}

.carousel-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 10px;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
    min-width: 100%;
    scroll-snap-align: start;
    background: linear-gradient(135deg, rgba(0,75,135,0.04) 0%, rgba(0,75,135,0.08) 100%);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid rgba(0,75,135,0.08);
}

.carousel-slide .slide-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.carousel-slide .slide-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 4px;
}

.carousel-slide .slide-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--step-inactive);
    transition: all 0.3s;
}

.carousel-dot.active {
    width: 24px;
    background: var(--hdfc-blue);
}

/* ─── Approval / Loading Screen ────────────────── */
.loading-screen {
    padding: 24px 20px;
    text-align: center;
}

.loading-screen .loading-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.step-item:last-child { border-bottom: none; }

.step-item .step-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.step-item .step-spinner {
    width: 22px;
    height: 22px;
    border: 2.5px solid var(--border-light);
    border-top-color: var(--hdfc-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.step-item .step-text {
    font-size: 14px;
    color: var(--text-caption);
}

.step-item.active .step-text {
    color: var(--form-dark-blue);
    font-weight: 600;
}

.step-item.done .step-text {
    color: var(--success-green);
}

.processing-msg {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 16px;
    font-style: italic;
    transition: opacity 0.5s;
}

/* ─── Approval Content ─────────────────────────── */
.approval-content {
    display: none;
    text-align: center;
    padding: 24px 20px;
}

.approval-content.visible {
    display: block;
    animation: fadeIn 0.6s ease;
}

.approval-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-green) 0%, var(--success-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 40px;
    animation: badgeBounce 0.6s ease;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
}

.approval-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 4px;
}

.approval-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.credit-limit-card {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #FFFFFF;
    margin: 16px 0;
    box-shadow: var(--shadow-lg);
}

.credit-limit-card .limit-label {
    font-size: 12px;
    color: var(--brand-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.credit-limit-card .limit-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-gold);
    margin: 8px 0;
}

.credit-limit-card .card-holder {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

/* ─── Mode Selection Cards ─────────────────────── */
.mode-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mode-card {
    flex: 1;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--surface-card);
}

.mode-card.selected {
    border-color: var(--hdfc-blue);
    background: linear-gradient(135deg, var(--hdfc-blue) 0%, var(--hdfc-blue-light) 100%);
    color: #FFFFFF;
}

.mode-card.selected .mode-title,
.mode-card.selected .mode-hint {
    color: #FFFFFF;
}

.mode-card .mode-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.mode-card .mode-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 4px;
}

.mode-card .mode-hint {
    font-size: 11px;
    color: var(--text-caption);
}

.mode-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.mode-form.visible {
    display: block;
}

/* ─── Review Page ──────────────────────────────── */
.review-section {
    margin-bottom: 16px;
}

.review-section .review-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--form-dark-blue);
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(0, 75, 135, 0.1);
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

.review-item .review-label {
    color: var(--text-secondary);
}

.review-item .review-value {
    color: var(--text-title);
    font-weight: 600;
    text-align: right;
    max-width: 55%;
    word-break: break-word;
}

/* ─── Success Page ─────────────────────────────── */
.success-container {
    text-align: center;
    padding: 32px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-green) 0%, #2ECC71 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.3);
    animation: badgeBounce 0.6s ease 0.3s both;
}

.success-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-title);
    margin-bottom: 8px;
}

.success-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.info-card {
    background: linear-gradient(135deg, rgba(0,75,135,0.04), rgba(0,75,135,0.08));
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 16px 0;
    border: 1px solid rgba(0,75,135,0.1);
    text-align: left;
}

.info-card .info-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--form-dark-blue);
    margin-bottom: 12px;
}

.info-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 13px;
}

.info-card .info-row:last-child { border-bottom: none; }

/* ─── Eligibility & Offers ─────────────────────── */
.eligibility-hero {
    background: linear-gradient(160deg, #0D2137 0%, #1A3A5C 60%, #234A6E 100%);
    padding: 40px 20px;
    text-align: center;
    color: #FFFFFF;
}

.eligibility-hero .hero-emoji {
    font-size: 64px;
    margin-bottom: 16px;
}

.eligibility-hero h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.eligibility-hero p {
    font-size: 14px;
    color: #D3DEEE;
    line-height: 1.5;
}

.feature-list {
    padding: 20px 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface-card);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.feature-item .feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item .feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-title);
}

.feature-item .feature-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ─── Security Footer ──────────────────────────── */
.security-footer {
    background: var(--bg-light);
    padding: 16px;
    text-align: center;
}

.security-footer .security-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.security-footer .bank-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-top: 8px;
}

.security-footer .bank-tagline {
    font-size: 10px;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── Progress Dialog Overlay ──────────────────── */
.progress-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.progress-overlay.visible {
    display: flex;
}

.progress-dialog {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}

.progress-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: var(--hdfc-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

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

/* ─── Timer ────────────────────────────────────── */
.otp-timer {
    font-size: 12px;
    color: var(--form-dark-blue);
    text-align: center;
    margin-top: 12px;
}

.resend-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--hdfc-blue);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
}

.resend-btn.visible {
    display: inline-block;
}

/* ─── Utility ──────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 11px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.px-16 { padding-left: 16px; padding-right: 16px; }
.py-16 { padding-top: 16px; padding-bottom: 16px; }

/* ─── Animations ───────────────────────────────── */
@keyframes spin {
    to { transform: rotate(360deg); }
}

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

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes badgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 50%, 90% { transform: translateX(-8px); }
    30%, 70% { transform: translateX(8px); }
}

.shake {
    animation: shake 0.4s ease;
}

.fade-in {
    animation: fadeIn 0.3s ease;
}

.slide-in {
    animation: slideInRight 0.3s ease;
}
