body {
    background: #181818;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    padding-top: 80px;
    padding-bottom: 120px;
    max-width: 500px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    color: #fff;
    margin-top: 0.5em;
}

.card {
    background: #232323;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.orange-bar {
    background: #e85c13;
    height: 8px;
    border-radius: 4px;
}

.btn, button, input[type="submit"] {
    background: #e85c13;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 0;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}
.btn:hover, button:hover, input[type="submit"]:hover {
    background: #ff7f32;
}

input, select, textarea {
    background: #232323;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}

.bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a1a;
    border-top: 2px solid #e85c13;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.nav-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9em;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-item.active, .nav-item:hover {
    color: #e85c13;
}

.stats-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

/* Unified Card Styles */
.unified-card {
    flex: 2;
    background: #232323;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card-left, .card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-divider {
    width: 1px;
    background: #444;
    margin: 0 10px;
}

.safe-spend-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.status-green {
    background: #7fffa0;
    box-shadow: 0 0 8px rgba(127, 255, 160, 0.5);
}

.status-dot.status-yellow {
    background: #ffe680;
    box-shadow: 0 0 8px rgba(255, 230, 128, 0.5);
}

.status-dot.status-red {
    background: #ff7f7f;
    box-shadow: 0 0 8px rgba(255, 127, 127, 0.5);
}

.details-link {
    background: none;
    border: 1px solid #e85c13;
    color: #e85c13;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    width: auto;
}

.details-link:hover {
    background: #e85c13;
    color: #fff;
}

.setup-link {
    background: none;
    border: 1px solid #7fffa0;
    color: #7fffa0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
    width: auto;
}

.setup-link:hover {
    background: #7fffa0;
    color: #232323;
}

.setup-form .form-group {
    margin-bottom: 15px;
}

.setup-form small {
    display: block;
    margin-top: 4px;
    font-size: 0.8em;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #232323;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: #fff;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #e85c13;
}

.modal-body {
    padding: 20px;
}

.budget-summary {
    margin-bottom: 20px;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

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

.budget-label {
    color: #aaa;
    font-size: 0.9em;
}

.budget-value {
    font-weight: bold;
    color: #fff;
}

.spent-amount {
    color: #ff7f7f;
}

.remaining-amount {
    color: #7fffa0;
}

.budget-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #444;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7fffa0, #e85c13);
    transition: width 0.3s ease;
}

.progress-text {
    color: #aaa;
    font-size: 0.9em;
    text-align: center;
}

.budget-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #2a2a2a;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator.status-green {
    border-left: 4px solid #7fffa0;
}

.status-indicator.status-yellow {
    border-left: 4px solid #ffe680;
}

.status-indicator.status-red {
    border-left: 4px solid #ff7f7f;
}

.status-text {
    color: #fff;
    font-size: 0.9em;
}
.stat-box {
    flex: 1;
    background: #232323;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    color: #fff;
    font-size: 1em;
}
.stat-green { color: #7fffa0; }
.stat-blue { color: #7faaff; }
.stat-yellow { color: #ffe680; }

.portfolio-legend {
    display: flex;
    gap: 16px;
    margin: 8px 0 0 0;
}
.legend-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 6px;
}
.legend-cash { background: #e8b013; }
.legend-checking { background: #1e6be8; }
.legend-savings { background: #13e87a; }
.legend-stocks { background: #e813a8; }

.streak-bar {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}
.streak-dot {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #e85c13;
    opacity: 0.5;
}
.streak-dot.active {
    opacity: 1;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
    display: block;
    border: 3px solid #e85c13;
}

/* Authentication Styles */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: #232323;
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.auth-card h1 {
    color: #e85c13;
    margin-bottom: 10px;
    font-size: 2em;
}

.auth-card h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.beta-notice {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

.beta-notice i {
    margin-right: 6px;
    font-size: 0.9em;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.auth-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 500;
}

.form-group input {
    background: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #e85c13;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: #ccc;
}

.auth-footer a {
    color: #e85c13;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Disclaimer Link */
.disclaimer-link {
    color: #888 !important;
    font-size: 0.9em;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.disclaimer-link:hover {
    opacity: 1;
    text-decoration: underline !important;
}

/* Disclaimer Modal Content */
.disclaimer-content {
    line-height: 1.6;
}

.disclaimer-content p {
    margin-bottom: 15px;
    color: #fff;
}

.disclaimer-content strong {
    color: #e85c13;
    font-size: 1.1em;
}

.disclaimer-note {
    background: #2a1a0a;
    border: 1px solid #e85c13;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.disclaimer-note i {
    color: #e85c13;
    font-size: 1.2em;
    margin-top: 2px;
}

.disclaimer-note p {
    margin: 0;
    color: #ccc;
    font-size: 0.95em;
}

/* Flash Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: opacity 0.5s ease-out;
}

.alert-error {
    background: #ff4444;
    color: #fff;
    border: 1px solid #cc0000;
}

.alert-success {
    background: #44ff44;
    color: #000;
    border: 1px solid #00cc00;
}

.alert-info {
    background: #4444ff;
    color: #fff;
    border: 1px solid #0000cc;
}

/* Logout Button */
.logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #e85c13;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.logout-btn:hover {
    background: #ff7f32;
}

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #232323;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.user-avatar {
    display: flex;
    align-items: center;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e85c13;
}

/* Portfolio Styles */
.portfolio-item {
    background: #333;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid #e85c13;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-header h4 {
    margin: 0;
    color: #fff;
}

.item-amount {
    font-size: 1.2em;
    font-weight: bold;
    color: #7fffa0;
}

.item-type {
    color: #ccc;
    font-size: 0.9em;
}

.portfolio-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

.portfolio-summary h4 {
    margin-bottom: 8px;
    color: #fff;
}

.total-amount {
    font-size: 2em;
    font-weight: bold;
    color: #e85c13;
}

/* Avatar Styles */
.avatar-preview {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e85c13;
    margin-bottom: 10px;
}

.avatar-preview p {
    color: #ccc;
    margin: 0;
}

/* Profile Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-item {
    background: #333;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-label {
    display: block;
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.stat-value {
    display: block;
    color: #e85c13;
    font-size: 1.5em;
    font-weight: bold;
}

/* Challenge Tabs */
.challenge-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #333;
}

.tab {
    flex: 1;
    padding: 12px 16px;
    text-align: center;
    cursor: pointer;
    color: #aaa;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.tab:hover {
    color: #e85c13;
}

.tab.active {
    color: #e85c13;
    border-bottom-color: #e85c13;
    font-weight: bold;
}

/* File Upload Styles */
input[type="file"] {
    background: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.2s;
}

input[type="file"]:focus {
    outline: none;
    border-color: #e85c13;
}

small {
    color: #ccc;
    font-size: 0.8em;
    margin-top: 4px;
    display: block;
}

/* Default Avatar */
.user-avatar img[src*="default.png"] {
    background: linear-gradient(45deg, #e85c13, #ff7f32);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.user-avatar img[src*="default.png"]::before {
    content: attr(alt);
    display: block;
    text-align: center;
    line-height: 40px;
}

/* Avatar Upload Styles */
.avatar-preview {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e85c13;
    margin-bottom: 10px;
}

.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    background: #e85c13;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.2s;
}

.file-upload:hover {
    background: #ff7f32;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-card {
    background: #2a1a0a;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: #e85c13;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #ccc;
}

/* Challenge Tabs */
.challenge-tabs {
    display: flex;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    background: #2a1a0a;
    border: none;
    color: #ccc;
    transition: all 0.2s;
}

.tab:hover {
    background: #3a2a1a;
    color: #fff;
}

.tab.active {
    background: #e85c13;
    color: #fff;
    border-bottom: 2px solid #e85c13;
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Challenge Cards */
.challenge-card {
    background: #2a1a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.challenge-card:hover {
    border-color: #e85c13;
    transform: translateY(-2px);
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.challenge-title {
    font-weight: bold;
    color: #fff;
}

.challenge-points {
    background: #e85c13;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.challenge-description {
    color: #ccc;
    margin-bottom: 10px;
}

.challenge-type {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7em;
    margin-bottom: 10px;
}

.challenge-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.complete-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.complete-btn:hover {
    background: #218838;
}

.complete-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.uncomplete-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.uncomplete-btn:hover {
    background: #c82333;
}

.completed-badge {
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.challenge-type.daily {
    background: #1e3a8a;
    color: #7faaff;
}

.challenge-type.weekly {
    background: #7c2d12;
    color: #ff7f32;
}

.challenge-card.completed {
    border-left: 4px solid #28a745;
    background: #1a2e1a;
}

.challenge-points.completed {
    background: #28a745;
    color: #fff;
}

.empty-state {
    text-align: center;
    color: #aaa;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 2em;
    margin-bottom: 15px;
    color: #666;
    display: block;
}

.empty-state p {
    margin: 0;
    font-size: 1em;
}

/* Top Header */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #232323;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.user-avatar {
    display: flex;
    align-items: center;
}

.user-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e85c13;
    cursor: pointer;
    transition: transform 0.2s;
}

.user-avatar img:hover {
    transform: scale(1.1);
}

/* Logout Button */
.logout-btn {
    background: #e85c13;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.9em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.logout-btn:hover {
    background: #ff7f32;
}

/* Container adjustment for top header */
.container {
    margin-top: 70px;
    padding: 20px;
    min-height: calc(100vh - 70px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-header {
        padding: 8px 15px;
    }
    
    .user-avatar img {
        width: 35px;
        height: 35px;
    }
    
    .logout-btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
    
    .container {
        margin-top: 60px;
        padding: 15px;
    }
}

/* Achievements Styles */
.achievements-section {
    margin-top: 30px;
}

.achievements-section h3 {
    color: #e85c13;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.achievements-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.achievement-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.achievement-card.earned {
    border-color: #e85c13;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a2a 100%);
}

.achievement-card.locked {
    opacity: 0.6;
    background: #1a1a1a;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: #e85c13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.achievement-card.locked .achievement-icon {
    background: #444;
    color: #666;
}

.achievement-info {
    flex: 1;
    min-width: 0;
}

.achievement-name {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.achievement-description {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 5px;
    line-height: 1.4;
}

.achievement-date {
    color: #888;
    font-size: 0.8em;
    font-style: italic;
}

.achievement-points {
    background: #e85c13;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    flex-shrink: 0;
}

.achievement-card.locked .achievement-points {
    background: #444;
    color: #666;
}

.achievement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 92, 19, 0.2);
}

.achievement-card.locked:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 480px) {
    .achievement-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .achievement-info {
        order: 2;
    }
    
    .achievement-points {
        order: 3;
    }
}

/* Enhanced Form Styles */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: opacity 0.5s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-alert {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.close-alert:hover {
    background: rgba(255, 255, 255, 0.2);
}

.error-message {
    color: #ff4444;
    font-size: 0.9em;
    margin-top: 4px;
    display: none;
}

.form-group input.error {
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

.form-hint {
    color: #888;
    font-size: 0.85em;
    margin-top: 4px;
}

.password-input {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input input {
    padding-right: 40px;
}

.toggle-password, .toggle-confirm-password {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: color 0.2s;
}

.toggle-password:hover, .toggle-confirm-password:hover {
    color: #e85c13;
}

.password-strength {
    font-size: 0.85em;
    margin-top: 4px;
    font-weight: 500;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-section {
    margin-bottom: 20px;
}

.help-section h4 {
    color: #e85c13;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-section ul {
    margin: 8px 0;
    padding-left: 20px;
}

.help-section li {
    margin-bottom: 4px;
    color: #ccc;
} 