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

:root {
    --bg: #f5f5f7;
    --card: #ffffff;
    --card-hover: #fafafa;
    --primary: #1a1a2e;
    --accent: #5b5ea6;
    --accent-light: #8587ce;
    --success: #34c759;
    --danger: #ff3b30;
    --warning: #ff9500;
    --text: #1a1a1a;
    --text-secondary: #6e6e73;
    --text-light: #aeaeb2;
    --border: #e5e5ea;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
}

/* ─── Auth Pages ───────────────────────────────────────────── */
.auth-page {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(160deg, #f5f5f7 0%, #e8e8ed 100%);
}

.auth-logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-icon {
    margin-bottom: 12px;
    color: var(--accent);
}

.logo-icon svg {
    width: 40px;
    height: 40px;
}

svg {
    vertical-align: middle;
}

label svg, h3 svg, h4 svg {
    vertical-align: -2px;
    margin-right: 4px;
}

.auth-logo h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 6px;
}

.tagline {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.auth-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(91, 94, 166, 0.15);
}

.password-field {
    -webkit-text-security: disc;
    -moz-text-security: disc;
    text-security: disc;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
    margin-top: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

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

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: var(--danger);
}

.referral-badge {
    background: #f0f0ff;
    border: 1px solid #d6d6ff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

/* ─── Game Page ────────────────────────────────────────────── */
.game-page {
    padding-bottom: 24px;
    background: var(--bg);
    min-height: 100vh;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-small {
    font-size: 16px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.balance-display {
    background: var(--bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--success);
    border: 1px solid var(--border);
}

.btn-icon {
    text-decoration: none;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.btn-icon:hover {
    opacity: 1;
}

.btn-back {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 2px;
}

/* ─── Game Board ───────────────────────────────────────────── */
.game-board {
    padding: 24px 20px;
    text-align: center;
}

.no-pozo-state {
    padding: 60px 20px;
}

.waiting-icon {
    margin-bottom: 16px;
    color: var(--text-light);
}

.no-pozo-state h2 {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.no-pozo-state p {
    color: var(--text-light);
    font-size: 14px;
}

/* Timer */
.timer-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.timer-ring {
    position: relative;
    width: 180px;
    height: 180px;
}

.timer-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 6;
}

.timer-progress {
    fill: none;
    stroke: var(--accent);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear, stroke 0.5s;
}

.timer-progress.final {
    stroke: var(--danger);
}

.timer-progress.paused {
    stroke: var(--warning);
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

#timer-display {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

#timer-display.final {
    color: var(--danger);
    animation: blink 1s infinite;
}

.timer-label {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Phase Indicator */
.phase-indicator {
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
}

.phase-indicator.final {
    background: #fff2f0;
    color: var(--danger);
}

.phase-indicator.paused {
    background: #fff8e6;
    color: var(--warning);
}

/* Leader */
.leader-section {
    margin: 20px 0;
}

.leader-crown {
    color: var(--accent);
}

.leader-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0 4px;
}

.leader-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 10px;
    margin: 24px 0;
    justify-content: center;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    flex: 1;
    max-width: 120px;
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Bid Button */
.btn-bid {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: var(--shadow);
    margin-top: 10px;
}

.btn-bid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-bid.cooldown {
    background: var(--border);
    color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

/* Notifications */
.notifications {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
}

.notification {
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.notification.success {
    background: #f0faf0;
    border: 1px solid #c6f0c6;
    color: #1a8a1a;
}

.notification.error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: var(--danger);
}

.notification.info {
    background: #f0f0ff;
    border: 1px solid #d6d6ff;
    color: var(--accent);
}

/* Winners */
.winners-section {
    padding: 8px 20px 20px;
}

.winners-section h3 {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.winners-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.winner-name {
    font-size: 14px;
    font-weight: 500;
}

.winner-prize {
    font-size: 14px;
    color: var(--success);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.no-winners {
    padding: 24px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* ─── Recharge Section ─────────────────────────────────────── */
.recharge-section {
    padding: 4px 20px 16px;
}

.btn-recharge {
    width: 100%;
    padding: 14px;
    background: var(--card);
    border: 1.5px solid var(--accent);
    border-radius: 16px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-recharge:hover {
    background: #f0f0ff;
}

.recharge-panel {
    margin-top: 12px;
    animation: slideDown 0.3s ease;
}

.payment-info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: var(--shadow);
}

.payment-info-card h4 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

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

.payment-value {
    color: var(--text);
    font-weight: 600;
}

.recharge-instruction {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
}

.upload-area {
    display: block;
    background: var(--card);
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.upload-area:hover {
    border-color: var(--accent);
    background: #fafaff;
}

.upload-area input[type="file"] {
    display: none;
}

.upload-icon {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
}

.upload-area span {
    color: var(--text-secondary);
    font-size: 14px;
}

.btn-send-payment {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* ─── Referral Page ────────────────────────────────────────── */
.referral-page {
    padding: 24px 20px;
}

.referral-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.referral-icon {
    margin-bottom: 12px;
    color: var(--accent);
}

.referral-card h2 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.referral-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.referral-link-box {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.referral-link-box input {
    flex: 1;
    padding: 12px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 12px;
}

.btn-copy {
    padding: 12px 18px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.referral-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.ref-stat {
    text-align: center;
}

.ref-stat-value {
    display: block;
    font-size: 28px;
    color: var(--accent);
    font-weight: 800;
}

.ref-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ─── Admin Page ───────────────────────────────────────────── */
.admin-content {
    padding: 16px 20px;
}

.admin-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.admin-card h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 700;
}

.btn-danger {
    padding: 12px 24px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-small {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.btn-danger-small {
    background: var(--danger);
    color: #fff;
}

.initial-fund-section {
    margin: 16px 0;
}

.fund-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.fund-options {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.fund-btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.fund-btn.active, .time-btn.active {
    border-color: var(--accent);
    background: rgba(91, 94, 166, 0.1);
    color: var(--accent);
}

.time-btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.fund-custom input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    font-size: 14px;
    color: var(--text);
}

.fund-custom input:focus {
    outline: none;
    border-color: var(--accent);
}

.user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.user-info {
    font-size: 14px;
}

.user-info small {
    color: var(--text-secondary);
    font-size: 12px;
}

.badge-admin {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 6px;
}

.winner-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

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

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    gap: 8px;
    flex-wrap: wrap;
}

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

.payment-item-actions {
    display: flex;
    gap: 6px;
}

/* ─── Animations ───────────────────────────────────────────── */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

@keyframes flash {
    0% { background: rgba(91, 94, 166, 0.1); }
    100% { background: transparent; }
}

.flash {
    animation: flash 0.5s ease;
}

/* ─── Rules Modal ─────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

.modal-icon {
    color: var(--accent);
    margin-bottom: 12px;
}

.modal-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.rules-list {
    text-align: left;
    margin-bottom: 24px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

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

.rule-item svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

/* ─── Winner Celebration ──────────────────────────────────── */
.celebration-icon {
    color: var(--warning);
}

.winner-modal-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.winner-modal-prize {
    font-size: 32px;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 16px;
}

.winner-modal-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ─── Wallet Page ─────────────────────────────────────────── */
.wallet-content {
    padding: 20px;
}

.wallet-balance-card {
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 20px;
}

.wallet-balance-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.wallet-balance-amount {
    font-size: 36px;
    font-weight: 800;
}

.wallet-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.wallet-action-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.deposit-btn {
    background: var(--success);
    color: #fff;
}

.withdraw-btn {
    background: var(--accent);
    color: #fff;
}

.withdraw-disabled {
    background: #c7c7cc;
    color: #8e8e93;
    cursor: not-allowed;
    opacity: 0.6;
}

.wallet-prize-label {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.85;
}

.wallet-prize-empty {
    opacity: 0.5;
    font-style: italic;
}

.wallet-section {
    margin-bottom: 16px;
}

.wallet-referral-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.withdraw-form .input-group {
    margin-bottom: 14px;
}

.withdraw-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.withdraw-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.withdraw-note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    text-align: center;
}

/* ─── Quick Links ───────────────────────────────────────── */
.quick-links {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    margin-bottom: 20px;
}

.quick-link-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s;
}

.quick-link-item:active {
    background: var(--card-hover);
}

.quick-link-item svg {
    color: var(--accent);
}

/* ─── How to Play Page ──────────────────────────────────── */
.how-to-play-content {
    padding: 20px 16px;
}

.how-to-play-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.rules-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    margin-top: 20px;
}

.rules-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rules-card ul {
    list-style: none;
    padding: 0;
}

.rules-card li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.rules-card li:last-child {
    border-bottom: none;
}

.rules-card li svg {
    color: var(--success);
    flex-shrink: 0;
}
