/* ==========================================================================
   Lott99.live - Mobile-First Premium Luxury UI
   Theme: Cream / Ivory (#FFF9E8, #FFFDF8), Pure White (#FFFFFF), 
          Premium Gold (#D99A16, #EAB329), Obsidian Black (#171717)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg-page: #F5EFE0;
    --bg-app: #FFFDF8;
    --bg-card: #FFFFFF;
    --bg-dark: #171717;
    --bg-dark-card: #1D1C1A;
    --primary-gold: #D99A16;
    --primary-gold-hover: #C58810;
    --primary-gold-light: #FFF4D6;
    --gold-accent: #EAB329;
    --gold-gradient: linear-gradient(135deg, #F5CF53 0%, #D99A16 100%);
    --gold-gradient-subtle: linear-gradient(135deg, #FFF9E8 0%, #FFF2CC 100%);
    --gold-ball: radial-gradient(circle at 35% 30%, #FFE885 0%, #EAB329 45%, #B77F0C 85%, #8C5F05 100%);
    --dark-gradient: linear-gradient(145deg, #24221F 0%, #151413 100%);
    
    --text-dark: #1F1F1F;
    --text-muted: #686766;
    --text-light: #9C9B98;
    --text-white: #FFFFFF;
    --text-gold: #D99A16;
    
    --border-color: #EFE8D8;
    --border-gold: rgba(217, 154, 22, 0.35);
    --border-gold-glow: rgba(234, 179, 41, 0.6);

    --status-won: #16A34A;
    --status-won-bg: #DCFCE7;
    --status-lost: #DC2626;
    --status-lost-bg: #FEE2E2;
    --status-pending: #D97706;
    --status-pending-bg: #FEF3C7;

    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-gold: 0 6px 20px rgba(217, 154, 22, 0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-full: 9999px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-page);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    -webkit-font-smoothing: antialiased;
}

/* Mobile Application Frame */
.app-container {
    width: 100%;
    max-width: 440px;
    min-height: 100vh;
    background-color: var(--bg-app);
    position: relative;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    padding-bottom: 84px; /* safe area for bottom navbar */
    overflow-x: hidden;
}

/* App Header */
.app-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
}

.header-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s ease;
    position: relative;
    text-decoration: none;
}

.header-btn:hover {
    background: var(--primary-gold-light);
}

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-crown-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-gold);
    filter: drop-shadow(0 2px 4px rgba(217, 154, 22, 0.3));
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.2px;
    margin-top: 1px;
}

.badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: #E11D48;
    color: #FFFFFF;
    font-size: 0.62rem;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-app);
}

/* Content Area */
.app-content {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* User Greeting Bar (Screens #6, #7, #11) */
.user-profile-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 2px;
}

.user-avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient-subtle);
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.user-meta-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.user-meta-id {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Cards */
.card-white {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.card-dark {
    background: var(--dark-gradient);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.card-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(234, 179, 41, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* Wallet Card (Screen #6 & #9) */
.wallet-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2px;
}

.wallet-balance-num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-top: 4px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.wallet-currency {
    color: var(--gold-accent);
    font-size: 1.35rem;
}

.wallet-gold-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(217, 154, 22, 0.18);
    border: 1px solid rgba(234, 179, 41, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
}

/* Quick Action 4-Grid (Screen #6) */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.quick-action-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.quick-action-item:hover, .quick-action-item:active {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.quick-action-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* Next Draw & Countdown Card (Screens #1, #6, #7) */
.next-draw-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.draw-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.draw-title {
    color: var(--text-dark);
    font-weight: 800;
}

.draw-time-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 6px 0 2px 0;
}

.draw-time-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-caption {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.draw-main-time {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.countdown-digits-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.countdown-digits {
    font-size: 1.35rem;
    font-weight: 800;
    color: #DC2626;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.countdown-sublabels {
    display: flex;
    gap: 12px;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

.closing-freeze-pill {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #B45309;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Last Draw Result Black Card with Laurel Wreath (Screens #1 & #6) */
.last-result-card {
    background: var(--dark-gradient);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.last-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.result-laurel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 0;
}

.laurel-branch {
    width: 32px;
    height: 48px;
    color: var(--gold-accent);
    opacity: 0.9;
}

.laurel-branch.right {
    transform: scaleX(-1);
}

/* 3D Gold Lottery Ball */
.gold-ball-3d {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gold-ball);
    box-shadow: 0 6px 14px rgba(183, 127, 12, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.7), inset 0 -3px 6px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    flex-shrink: 0;
}

.gold-ball-3d.sm {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.gold-ball-3d.lg {
    width: 76px;
    height: 76px;
    font-size: 2.3rem;
}

/* Number Selector Grid (Screen #7) */
.number-selector-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selector-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
}

.number-grid-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.num-circle-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E0D2;
    box-shadow: var(--shadow-sm);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.num-circle-btn:active {
    transform: scale(0.94);
}

.num-circle-btn.selected {
    background: var(--gold-ball);
    border-color: var(--primary-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(217, 154, 22, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

/* Bet Amount Selector (Screen #7) */
.bet-amount-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.bet-pill-btn {
    flex: 1;
    min-width: 60px;
    padding: 10px 4px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 1px solid #E5E0D2;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: var(--shadow-sm);
}

.bet-pill-btn:active {
    transform: scale(0.96);
}

.bet-pill-btn.selected {
    background: var(--gold-gradient);
    border-color: var(--primary-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(217, 154, 22, 0.35);
}

/* Primary Action Buttons */
.btn-gold-primary {
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-full);
    background: var(--gold-gradient);
    border: none;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(217, 154, 22, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-gold-primary:hover {
    box-shadow: 0 8px 24px rgba(217, 154, 22, 0.45);
    transform: translateY(-1px);
}

.btn-gold-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(217, 154, 22, 0.25);
}

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

.btn-outline-white {
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 1.5px solid #E5E0D2;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.15s ease;
}

.btn-outline-white:hover {
    background: #F9F7F0;
}

/* Live Badge (Screen #7) */
.live-indicator-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.72rem;
    font-weight: 800;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.25);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* Data Tables & Lists (Screens #1, #2, #8, #10) */
.table-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
}

.table-header-title h3 {
    font-size: 0.95rem;
    font-weight: 800;
}

.view-all-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: #FAF8F2;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 12px 14px;
    font-size: 0.82rem;
    border-bottom: 1px solid #F6F3E9;
    vertical-align: middle;
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

.status-badge.won {
    background: var(--status-won-bg);
    color: var(--status-won);
}

.status-badge.lost {
    background: var(--status-lost-bg);
    color: var(--status-lost);
}

.status-badge.pending {
    background: var(--status-pending-bg);
    color: var(--status-pending);
}

.status-badge.added {
    background: var(--status-won-bg);
    color: var(--status-won);
}

.status-badge.deducted {
    background: var(--status-lost-bg);
    color: var(--status-lost);
}

/* Pill Tabs (Screens #8, #10, #12) */
.pill-tabs-row {
    display: flex;
    background: #EDE8DC;
    padding: 4px;
    border-radius: var(--radius-full);
    gap: 4px;
}

.pill-tab {
    flex: 1;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.pill-tab.active {
    background: #171717;
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

/* Hero Section (Screen #1) */
.hero-section {
    text-align: center;
    padding: 16px 8px 6px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-balls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 4px;
}

.hero-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.2px;
}

/* Bottom Navigation Bar (Screens #1 through #14) */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 440px;
    height: 68px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 60;
    padding: 0 6px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #8C8A84;
    padding: 6px 10px;
    flex: 1;
    transition: color 0.15s ease;
}

.nav-item-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.nav-item-label {
    font-size: 0.68rem;
    font-weight: 700;
}

.nav-item.active {
    color: var(--primary-gold);
}

.nav-item.active .nav-item-icon {
    filter: drop-shadow(0 2px 6px rgba(217, 154, 22, 0.4));
}

/* Drawer Menu (Hamburger) */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer-sheet {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 290px;
    max-width: 80%;
    background: var(--bg-app);
    z-index: 101;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.drawer-overlay.open .drawer-sheet {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px;
    background: var(--gold-gradient-subtle);
    border-bottom: 1px solid var(--border-color);
}

.drawer-menu-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    list-style: none;
}

.drawer-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-left: 3px solid transparent;
}

.drawer-menu-link:hover, .drawer-menu-link.active {
    background: #FFF4D6;
    color: var(--primary-gold);
    border-left-color: var(--primary-gold);
}

/* Modal Popup (Screen #14 Logout Modal & Dialogs) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    width: 100%;
    max-width: 360px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    transform: scale(0.92);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.modal-overlay.open .modal-box {
    transform: scale(1);
}

.modal-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FFF4D6;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: #171717;
    color: #FFFFFF;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    font-size: 0.86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto;
    animation: toastIn 0.3s ease;
    border-left: 4px solid var(--primary-gold);
}

.toast.success { border-left-color: #22C55E; }
.toast.error { border-left-color: #EF4444; }

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

/* Responsive adjustments */
@media (min-width: 768px) {
    body {
        padding: 24px 0;
        background: linear-gradient(135deg, #EFE8D8 0%, #DFD5BF 100%);
    }
    .app-container {
        border-radius: 28px;
        overflow: hidden;
        border: 4px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }
}
