/* /Components/CookieConsentBanner.razor.rz.scp.css */
/* ============================================
   Cookie Consent Banner Styles
   ============================================ */

.cookie-consent-banner[b-my8z4s868t] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.show[b-my8z4s868t] {
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-content[b-my8z4s868t] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text[b-my8z4s868t] {
    flex: 1;
}

.cookie-consent-title[b-my8z4s868t] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-consent-title i[b-my8z4s868t] {
    font-size: 1.5rem;
}

.cookie-consent-message[b-my8z4s868t] {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.cookie-consent-link[b-my8z4s868t] {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.cookie-consent-link:hover[b-my8z4s868t] {
    color: white;
    opacity: 0.85;
}

.cookie-consent-actions[b-my8z4s868t] {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-accept[b-my8z4s868t] {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: white;
    color: #667eea;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.cookie-consent-accept:hover[b-my8z4s868t] {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
    color: #5568d3;
}

.cookie-consent-accept i[b-my8z4s868t] {
    margin-right: 0.5rem;
}

.cookie-consent-learn-more[b-my8z4s868t] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-learn-more:hover[b-my8z4s868t] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner[b-my8z4s868t] {
        padding: 1.25rem 1.5rem;
    }

    .cookie-consent-content[b-my8z4s868t] {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-consent-actions[b-my8z4s868t] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-consent-accept[b-my8z4s868t],
    .cookie-consent-learn-more[b-my8z4s868t] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/LandingHero.razor.rz.scp.css */
/* ============================================
   Landing Hero Component Styles
   ============================================ */

.landing-hero-wrapper[b-cm40q74m5v] {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift-b-cm40q74m5v 15s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Header */
.hero-header[b-cm40q74m5v] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1.5rem 2rem;
}

.header-container[b-cm40q74m5v] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-cm40q74m5v] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.header-actions[b-cm40q74m5v] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header-signup[b-cm40q74m5v],
.btn-header-signin[b-cm40q74m5v] {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-header-signup[b-cm40q74m5v] {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-header-signup:hover[b-cm40q74m5v] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-header-signin[b-cm40q74m5v] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-header-signin:hover[b-cm40q74m5v] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

@keyframes gradientShift-b-cm40q74m5v {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content[b-cm40q74m5v] {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title[b-cm40q74m5v] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-subtitle[b-cm40q74m5v] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-actions[b-cm40q74m5v] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary[b-cm40q74m5v] {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-hero-primary:hover[b-cm40q74m5v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #000;
}

/* Floating Icons/Visuals */
.hero-visuals[b-cm40q74m5v] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon[b-cm40q74m5v] {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: float-b-cm40q74m5v 6s ease-in-out infinite;
    font-size: 2rem;
}

.floating-icon i[b-cm40q74m5v] {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.icon-1[b-cm40q74m5v] {
    top: 12%;
    left: 3%;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    animation-delay: 0s;
}

.icon-2[b-cm40q74m5v] {
    top: 20%;
    right: 4%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    animation-delay: 0.5s;
}header[b-cm40q74m5v] {
        padding: 1rem 1.5rem;
    }
    
    .brand-logo[b-cm40q74m5v] {
        font-size: 1.5rem;
    }
    
    .header-actions[b-cm40q74m5v] {
        gap: 0.5rem;
    }
    
    .btn-header-signup[b-cm40q74m5v],
    .btn-header-signin[b-cm40q74m5v] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.icon-3[b-cm40q74m5v] {
    top: 55%;
    left: 2%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    animation-delay: 1s;
}

.icon-4[b-cm40q74m5v] {
    bottom: 15%;
    left: 5%;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    animation-delay: 1.5s;
}

.icon-5[b-cm40q74m5v] {
    top: 45%;
    right: 3%;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
    animation-delay: 2s;
}

.icon-6[b-cm40q74m5v] {
    bottom: 12%;
    right: 6%;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05));
    animation-delay: 2.5s;
}

.icon-7[b-cm40q74m5v] {
    top: 35%;
    left: 8%;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.08));
    animation-delay: 3s;
}

@keyframes float-b-cm40q74m5v {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-header-signin[b-cm40q74m5v] {
        display: none;
    }
    
    .hero-title[b-cm40q74m5v] {
        font-size: 3rem;
    }
    
    .hero-subtitle[b-cm40q74m5v] {
        font-size: 1.1rem;
    }
    
    .floating-icon[b-cm40q74m5v] {
        display: none;
    }
    
    .icon-1[b-cm40q74m5v], .icon-2[b-cm40q74m5v], .icon-3[b-cm40q74m5v] {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-title[b-cm40q74m5v] {
        font-size: 2.5rem;
    }
    
    .btn-hero-primary[b-cm40q74m5v] {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
/* /Components/LanguageSelector.razor.rz.scp.css */
.language-selector[b-rs21l2inbe] {
    display: inline-block;
}

.language-selector .form-select[b-rs21l2inbe] {
    min-width: 140px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    padding: 0.625rem 2rem 0.625rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-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 fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.language-selector .form-select:hover[b-rs21l2inbe] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-selector .form-select:focus[b-rs21l2inbe] {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.language-selector .form-select option[b-rs21l2inbe] {
    background-color: #1a1a2e;
    color: white;
}

/* For authenticated layout (MainLayout) */
.app-layout .language-selector .form-select[b-rs21l2inbe] {
    border-color: rgba(0, 0, 0, 0.2);
    color: #333;
}

.app-layout .language-selector .form-select:hover[b-rs21l2inbe] {
    border-color: rgba(0, 0, 0, 0.3);
}

.app-layout .language-selector .form-select:focus[b-rs21l2inbe] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
/* /Components/NutritionProgressChart.razor.rz.scp.css */
.nutrition-charts-container[b-c271blfgl3] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.macro-progress-section[b-c271blfgl3] {
    background: var(--card-background, #fff);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.macro-progress-section h4[b-c271blfgl3] {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.macro-progress-item[b-c271blfgl3] {
    margin-bottom: 1rem;
}

.macro-header[b-c271blfgl3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.macro-label[b-c271blfgl3] {
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
}

.macro-values[b-c271blfgl3] {
    color: var(--text-secondary, #666);
}

.macro-percentage[b-c271blfgl3] {
    font-weight: 600;
    font-size: 0.8125rem;
}

.macro-percentage.excellent[b-c271blfgl3] {
    color: #10b981;
}

.macro-percentage.good[b-c271blfgl3] {
    color: #f59e0b;
}

.macro-percentage.needs-work[b-c271blfgl3] {
    color: #ef4444;
}

.progress-bar-container[b-c271blfgl3] {
    width: 100%;
    height: 24px;
    background-color: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.progress-bar[b-c271blfgl3] {
    height: 100%;
    transition: width 0.6s ease-in-out;
    border-radius: 12px;
}

.progress-bar.excellent[b-c271blfgl3] {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.progress-bar.good[b-c271blfgl3] {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.progress-bar.needs-work[b-c271blfgl3] {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.chart-card[b-c271blfgl3] {
    background: var(--card-background, #fff);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chart-card h5[b-c271blfgl3] {
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.chart-subtitle[b-c271blfgl3] {
    font-size: 0.875rem;
    color: var(--text-secondary, #666);
    margin-bottom: 1rem;
}

.chart-card canvas[b-c271blfgl3] {
    max-height: 300px;
    width: 100% !important;
    height: auto !important;
}
/* /Components/NutritionSessionModal.razor.rz.scp.css */
/* Nutrition Modal Styles */

.nutrition-modal[b-5ug83c6xws] {
    z-index: 1050;
}

.nutrition-modal-dialog[b-5ug83c6xws] {
    max-width: 600px;
    max-height: 90vh;
}

.nutrition-modal-content[b-5ug83c6xws] {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.nutrition-header[b-5ug83c6xws] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
    padding: 1.5rem;
}

.modal-title-section[b-5ug83c6xws] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon[b-5ug83c6xws] {
    font-size: 2rem;
}

.modal-title-section h5[b-5ug83c6xws] {
    margin: 0;
    font-weight: 600;
    color: #212529;
}

.session-date[b-5ug83c6xws] {
    color: #6c757d;
    font-size: 0.875rem;
}

.nutrition-modal-body[b-5ug83c6xws] {
    padding: 1.5rem;
    max-height: calc(90vh - 200px);
    overflow-y: auto;
}

/* Daily Summary Section */
.daily-summary-section[b-5ug83c6xws] {
    margin-bottom: 2rem;
}

.section-title[b-5ug83c6xws] {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

.nutrition-targets[b-5ug83c6xws] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.target-card[b-5ug83c6xws] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.target-card:hover[b-5ug83c6xws] {
    background: #fff;
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.target-label[b-5ug83c6xws] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.target-value[b-5ug83c6xws] {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.current[b-5ug83c6xws] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #212529;
}

.target[b-5ug83c6xws] {
    font-size: 0.875rem;
    color: #6c757d;
}

.progress-bar-small[b-5ug83c6xws] {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill[b-5ug83c6xws] {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8787);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-fill.protein[b-5ug83c6xws] {
    background: linear-gradient(90deg, #4c6ef5, #748ffc);
}

.progress-fill.carbs[b-5ug83c6xws] {
    background: linear-gradient(90deg, #ffa94d, #ffb366);
}

.progress-fill.fat[b-5ug83c6xws] {
    background: linear-gradient(90deg, #a78bfa, #c4b5fd);
}

/* Meal Categories Section */
.meal-categories-section[b-5ug83c6xws] {
    margin-bottom: 2rem;
}

.category-badges[b-5ug83c6xws] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge[b-5ug83c6xws] {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.badge-success[b-5ug83c6xws] {
    background-color: #d3f9d8;
    color: #2f5233;
}

.badge-warning[b-5ug83c6xws] {
    background-color: #ffe066;
    color: #7d4e00;
}

.badge-danger[b-5ug83c6xws] {
    background-color: #ffc9c9;
    color: #7a2020;
}

.badge-info[b-5ug83c6xws] {
    background-color: #d0ebff;
    color: #0c448b;
}

/* Meals Section */
.meals-section[b-5ug83c6xws] {
    margin-bottom: 2rem;
}

.meals-grid[b-5ug83c6xws] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.meal-card[b-5ug83c6xws] {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.meal-card:hover[b-5ug83c6xws] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.meal-image-container[b-5ug83c6xws] {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f8f9fa;
    overflow: hidden;
}

.meal-image[b-5ug83c6xws] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-image-placeholder[b-5ug83c6xws] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #dee2e6;
    font-size: 2rem;
}

.meal-category-badge[b-5ug83c6xws] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.meal-details[b-5ug83c6xws] {
    padding: 0.75rem;
}

.meal-summary[b-5ug83c6xws] {
    font-size: 0.875rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meal-time[b-5ug83c6xws] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.meal-macros[b-5ug83c6xws] {
    display: flex;
    justify-content: space-around;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.macro-item[b-5ug83c6xws] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.macro-label[b-5ug83c6xws] {
    font-weight: 600;
    color: #6c757d;
}

.macro-value[b-5ug83c6xws] {
    font-weight: 700;
    color: #212529;
}

.meal-calories[b-5ug83c6xws] {
    text-align: center;
    font-size: 0.875rem;
    color: #212529;
}

/* Empty State */
.empty-meals-state[b-5ug83c6xws] {
    text-align: center;
    padding: 2rem 1rem;
    color: #6c757d;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.empty-meals-state p[b-5ug83c6xws] {
    margin: 0;
}

/* Upload Section */
.upload-section[b-5ug83c6xws] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.upload-progress[b-5ug83c6xws] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #e7f5ff;
    border-radius: 8px;
    color: #0c448b;
}

.upload-options[b-5ug83c6xws] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.upload-btn[b-5ug83c6xws] {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.upload-btn:hover[b-5ug83c6xws] {
    background-color: #e7f5ff;
    border-color: #4c6ef5;
    color: #4c6ef5;
}

.image-preview-section[b-5ug83c6xws] {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
}

.preview-container[b-5ug83c6xws] {
    position: relative;
    margin-bottom: 1rem;
}

.preview-image[b-5ug83c6xws] {
    width: 100%;
    max-height: 300px;
    border-radius: 6px;
    object-fit: cover;
}

.preview-container .btn-secondary[b-5ug83c6xws] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0.9;
}

.preview-container .btn-secondary:hover[b-5ug83c6xws] {
    opacity: 1;
}

.upload-confirm-btn[b-5ug83c6xws] {
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
}

.upload-confirm-btn:hover[b-5ug83c6xws] {
    background-color: #4c6ef5;
    border-color: #4c6ef5;
}

/* Alert Styles */
.alert[b-5ug83c6xws] {
    border-radius: 8px;
    border: none;
}

.alert-danger[b-5ug83c6xws] {
    background-color: #ffe3e3;
    color: #7a2020;
}

.alert-success[b-5ug83c6xws] {
    background-color: #d3f9d8;
    color: #2f5233;
}

.alert-info[b-5ug83c6xws] {
    background-color: #d0ebff;
    color: #0c448b;
}

/* Modal Footer */
.nutrition-footer[b-5ug83c6xws] {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

/* Scrollbar styling for modal body */
.nutrition-modal-body[b-5ug83c6xws]::-webkit-scrollbar {
    width: 8px;
}

.nutrition-modal-body[b-5ug83c6xws]::-webkit-scrollbar-track {
    background: transparent;
}

.nutrition-modal-body[b-5ug83c6xws]::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.nutrition-modal-body[b-5ug83c6xws]::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

/* Responsive Design */
@media (max-width: 576px) {
    .nutrition-modal-dialog[b-5ug83c6xws] {
        max-width: 100%;
        margin: 0.5rem;
    }

    .nutrition-targets[b-5ug83c6xws] {
        grid-template-columns: repeat(2, 1fr);
    }

    .meals-grid[b-5ug83c6xws] {
        grid-template-columns: repeat(2, 1fr);
    }

    .upload-options[b-5ug83c6xws] {
        flex-direction: column;
    }

    .upload-btn[b-5ug83c6xws] {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .nutrition-modal-content[b-5ug83c6xws] {
        max-height: 95vh;
    }

    .nutrition-targets[b-5ug83c6xws] {
        grid-template-columns: 1fr;
    }

    .meals-grid[b-5ug83c6xws] {
        grid-template-columns: 1fr;
    }

    .meal-macros[b-5ug83c6xws] {
        gap: 0.5rem;
    }
}

/* Spinner Animation */
.spinner-border[b-5ug83c6xws] {
    border: 2px solid #e9ecef;
    border-right-color: #4c6ef5;
    animation: spin-b-5ug83c6xws 0.75s linear infinite;
}

@keyframes spin-b-5ug83c6xws {
    to {
        transform: rotate(360deg);
    }
}
/* /Layout/LandingLayout.razor.rz.scp.css */
.landing-footer[b-zu3xg0lmk7] {
    background-color: #fafafa;
    border-top: 1px solid #e5e7eb;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-container[b-zu3xg0lmk7] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns[b-zu3xg0lmk7] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand[b-zu3xg0lmk7] {
    padding-right: 2rem;
}

.brand-name[b-zu3xg0lmk7] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.brand-tagline[b-zu3xg0lmk7] {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.footer-column[b-zu3xg0lmk7] {
    display: flex;
    flex-direction: column;
}

.footer-heading[b-zu3xg0lmk7] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0;
}

.footer-links[b-zu3xg0lmk7] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a[b-zu3xg0lmk7] {
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.footer-links a:hover[b-zu3xg0lmk7] {
    color: #1a1a1a;
}

.footer-bottom[b-zu3xg0lmk7] {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p[b-zu3xg0lmk7] {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-columns[b-zu3xg0lmk7] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand[b-zu3xg0lmk7] {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .footer-columns[b-zu3xg0lmk7] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container[b-zu3xg0lmk7] {
        padding: 0 1.5rem;
    }
    
    .landing-footer[b-zu3xg0lmk7] {
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* App Layout */
.app-layout[b-k33w8qfvm6] {
    min-height: 100vh;
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.main-content[b-k33w8qfvm6] {
    width: 100%;
    min-height: calc(100vh - var(--navbar-height));
    padding: 32px 24px;
}

.content-container[b-k33w8qfvm6] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    padding-top: 35px;
}

/* Login Page Styles */
.login-page[b-k33w8qfvm6] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container[b-k33w8qfvm6] {
    width: 100%;
    max-width: 440px;
}

.login-content[b-k33w8qfvm6] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.login-icon[b-k33w8qfvm6] {
    font-size: 72px;
    margin-bottom: 24px;
    animation: bounce-b-k33w8qfvm6 2s infinite;
}

@keyframes bounce-b-k33w8qfvm6 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.login-title[b-k33w8qfvm6] {
    color: #6366f1;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.login-subtitle[b-k33w8qfvm6] {
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.5;
}

/* Loading Spinner */
.loading-spinner[b-k33w8qfvm6] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.spinner-circle[b-k33w8qfvm6] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6366f1;
    animation: shuttle-b-k33w8qfvm6 1.4s infinite ease-in-out both;
}

.spinner-circle:nth-child(1)[b-k33w8qfvm6] {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2)[b-k33w8qfvm6] {
    animation-delay: -0.16s;
}

@keyframes shuttle-b-k33w8qfvm6 {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-title[b-k33w8qfvm6] {
    color: #6366f1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.loading-subtitle[b-k33w8qfvm6] {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
}

.login-button[b-k33w8qfvm6] {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.login-button:hover[b-k33w8qfvm6] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.login-button:active[b-k33w8qfvm6] {
    transform: translateY(0);
}

.login-footer[b-k33w8qfvm6] {
    margin-top: 24px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

/* Error UI */
#blazor-error-ui[b-k33w8qfvm6] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    bottom: 0;
    box-shadow: 0 -4px 20px rgba(239, 68, 68, 0.3);
    display: none;
    left: 0;
    padding: 16px 24px;
    position: fixed;
    width: 100%;
    z-index: 2000;
    color: white;
}

#blazor-error-ui.show[b-k33w8qfvm6] {
    display: block;
}

.error-content[b-k33w8qfvm6] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.error-icon[b-k33w8qfvm6] {
    font-size: 24px;
    flex-shrink: 0;
}

.error-message[b-k33w8qfvm6] {
    flex: 1;
    font-weight: 500;
    font-size: 15px;
}

.reload-link[b-k33w8qfvm6] {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.reload-link:hover[b-k33w8qfvm6] {
    color: #fef3c7;
}

.dismiss-button[b-k33w8qfvm6] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dismiss-button:hover[b-k33w8qfvm6] {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .content-container[b-k33w8qfvm6] {
        padding: 0;
    }

    .login-content[b-k33w8qfvm6] {
        padding: 40px 28px;
    }

    .login-title[b-k33w8qfvm6] {
        font-size: 32px;
    }

    .login-subtitle[b-k33w8qfvm6] {
        font-size: 15px;
    }

    .login-icon[b-k33w8qfvm6] {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .login-page[b-k33w8qfvm6] {
        padding: 16px;
    }

    .login-content[b-k33w8qfvm6] {
        padding: 32px 24px;
    }

    #blazor-error-ui[b-k33w8qfvm6] {
        padding: 12px 16px;
    }

    .error-content[b-k33w8qfvm6] {
        gap: 12px;
    }

    .error-icon[b-k33w8qfvm6] {
        font-size: 20px;
    }

    .error-message[b-k33w8qfvm6] {
        font-size: 14px;
    }
}
/* /Pages/About.razor.rz.scp.css */
/* ============================================
   Legal Page Styles (About Page)
   ============================================ */

.legal-page-wrapper[b-3x9pegqu3t] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.legal-header[b-3x9pegqu3t] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container[b-3x9pegqu3t] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-3x9pegqu3t] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.brand-logo:hover[b-3x9pegqu3t] {
    color: rgba(255, 255, 255, 0.9);
}

.header-actions[b-3x9pegqu3t] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header-signup[b-3x9pegqu3t],
.btn-header-signin[b-3x9pegqu3t] {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-header-signup[b-3x9pegqu3t] {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-header-signup:hover[b-3x9pegqu3t] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-header-signin[b-3x9pegqu3t] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-header-signin:hover[b-3x9pegqu3t] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Language selector inherits default styles from LanguageSelector.razor.css */
/* No override needed - transparent background with white text works on gradient */

.legal-content[b-3x9pegqu3t] {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.legal-container[b-3x9pegqu3t] {
    background-color: #ffffff;
}

.legal-title[b-3x9pegqu3t] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-updated[b-3x9pegqu3t] {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section[b-3x9pegqu3t] {
    margin-bottom: 3rem;
}

.legal-section h2[b-3x9pegqu3t] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.legal-section h3[b-3x9pegqu3t] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p[b-3x9pegqu3t] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul[b-3x9pegqu3t],
.legal-section ol[b-3x9pegqu3t] {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li[b-3x9pegqu3t] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 0.75rem;
}

.legal-section li strong[b-3x9pegqu3t] {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-warning[b-3x9pegqu3t] {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-warning strong[b-3x9pegqu3t] {
    color: #92400e;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header[b-3x9pegqu3t] {
        padding: 1rem 1.5rem;
    }

    .brand-section[b-3x9pegqu3t] {
        gap: 0.5rem;
    }

    .header-icon[b-3x9pegqu3t] {
        width: 28px;
        height: 28px;
    }

    .brand-logo[b-3x9pegqu3t] {
        font-size: 1.5rem;
    }

    .header-actions[b-3x9pegqu3t] {
        gap: 0.5rem;
    }

    .btn-header-signup[b-3x9pegqu3t],
    .btn-header-signin[b-3x9pegqu3t] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-header-signin[b-3x9pegqu3t] {
        display: none;
    }

    .legal-content[b-3x9pegqu3t] {
        padding: 2rem 1.5rem;
    }

    .legal-title[b-3x9pegqu3t] {
        font-size: 2rem;
    }

    .legal-section h2[b-3x9pegqu3t] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-3x9pegqu3t] {
        font-size: 1.125rem;
    }
}

/* FAQ Accordion Styles - matching landing page */
.faq-container[b-3x9pegqu3t] {
    max-width: 800px;
    margin: 0 auto;
}

.accordion[b-3x9pegqu3t] {
    --bs-accordion-border-color: #e5e7eb;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
    --bs-accordion-active-bg: #f0f4ff;
    --bs-accordion-active-color: #667eea;
}

.accordion-item[b-3x9pegqu3t] {
    border: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    border-radius: 0;
    background-color: white;
}

.accordion-item:first-of-type[b-3x9pegqu3t] {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.accordion-item:last-of-type[b-3x9pegqu3t] {
    border-bottom-left-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.accordion-item:not(:first-of-type)[b-3x9pegqu3t] {
    border-top: 0;
}

.accordion-button[b-3x9pegqu3t] {
    font-weight: 500;
    color: #1a1a1a;
    background-color: white;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed)[b-3x9pegqu3t] {
    background-color: #f0f4ff;
    color: #667eea;
    box-shadow: none;
    border-left: none;
}

.accordion-button[b-3x9pegqu3t]::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus[b-3x9pegqu3t] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

.accordion-body[b-3x9pegqu3t] {
    color: #6b7280;
    line-height: 1.6;
    padding: 1rem 1.25rem;
}
/* /Pages/Challenges.razor.rz.scp.css */
.challenges-container[b-ii7vs9oorp] {
    width: 100%;
    min-height: 100vh;
}

.challenges-content[b-ii7vs9oorp] {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

/* Welcome Section */
.welcome-section[b-ii7vs9oorp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.welcome-card[b-ii7vs9oorp] {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.icon-large[b-ii7vs9oorp] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.welcome-card h2[b-ii7vs9oorp] {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.welcome-card p[b-ii7vs9oorp] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large[b-ii7vs9oorp] {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Challenge Type Selection Section */
.challenge-type-section[b-ii7vs9oorp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.challenge-type-card[b-ii7vs9oorp] {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.challenge-type-card h2[b-ii7vs9oorp] {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.challenge-type-card p[b-ii7vs9oorp] {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.challenge-type-pills[b-ii7vs9oorp] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .challenge-type-pills[b-ii7vs9oorp] {
        grid-template-columns: 1fr;
    }
}

.challenge-pill[b-ii7vs9oorp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.challenge-pill:hover[b-ii7vs9oorp] {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.challenge-pill:active[b-ii7vs9oorp] {
    transform: translateY(0);
}

.nutrition-pill:hover[b-ii7vs9oorp] {
    border-color: #10b981;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.walking-pill:hover[b-ii7vs9oorp] {
    border-color: #3b82f6;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.other-pill:hover[b-ii7vs9oorp] {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.pill-icon[b-ii7vs9oorp] {
    font-size: 2.5rem;
    min-width: 60px;
}

.pill-text[b-ii7vs9oorp] {
    flex: 1;
}

.pill-title[b-ii7vs9oorp] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.pill-description[b-ii7vs9oorp] {
    font-size: 0.9rem;
    color: #666;
}

/* Chat Section */
.chat-section[b-ii7vs9oorp] {
    min-height: 500px;
    padding: 1rem 0;
}

/* Success Section */
.success-section[b-ii7vs9oorp] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.success-card[b-ii7vs9oorp] {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.success-card h2[b-ii7vs9oorp] {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-card p[b-ii7vs9oorp] {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.action-buttons[b-ii7vs9oorp] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .action-buttons[b-ii7vs9oorp] {
        flex-direction: column;
    }
    
    .challenges-content[b-ii7vs9oorp] {
        padding: 1rem;
    }
    
    .welcome-card[b-ii7vs9oorp],
    .success-card[b-ii7vs9oorp] {
        padding: 2rem;
    }
}

/* Error Banner */
.error-banner[b-ii7vs9oorp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #fee2e2;
    border-left: 4px solid #dc2626;
    border-radius: 4px;
    color: #991b1b;
    margin-top: 1rem;
}

.error-banner .close-btn[b-ii7vs9oorp] {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn[b-ii7vs9oorp] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-ii7vs9oorp] {
    background-color: #667eea;
    color: white;
}

.btn-primary:hover[b-ii7vs9oorp] {
    background-color: #5568d3;
}

.btn-secondary[b-ii7vs9oorp] {
    background-color: #f3f4f6;
    color: #333;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover[b-ii7vs9oorp] {
    background-color: #e5e7eb;
}

.bi[b-ii7vs9oorp] {
    display: inline-block;
}
/* /Pages/Index.razor.rz.scp.css */
/* ============================================
   Landing Page Styles
   ============================================ */

/* Section Containers */
.landing-section[b-5qhqj21kqm] {
    padding: 5rem 0;
    background-color: #ffffff;
}

.landing-section-alt[b-5qhqj21kqm] {
    background-color: #fafafa;
}

.section-container[b-5qhqj21kqm] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header[b-5qhqj21kqm] {
    margin-bottom: 4rem;
}

.section-title[b-5qhqj21kqm] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle[b-5qhqj21kqm] {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6b7280;
    margin: 0;
}

/* Features Grid */
.features-grid[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card[b-5qhqj21kqm] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover[b-5qhqj21kqm] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.feature-card-body[b-5qhqj21kqm] {
    padding: 2rem;
    text-align: center;
}

.feature-icon[b-5qhqj21kqm] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    font-size: 1.75rem;
    color: white;
}

.feature-title[b-5qhqj21kqm] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-description[b-5qhqj21kqm] {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* How It Works Steps */
.how-it-works-steps[b-5qhqj21kqm] {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.step-row[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.step-row-reverse[b-5qhqj21kqm] {
    direction: rtl;
}

.step-row-reverse > *[b-5qhqj21kqm] {
    direction: ltr;
}

.step-content[b-5qhqj21kqm] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-title[b-5qhqj21kqm] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.step-description[b-5qhqj21kqm] {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.step-list[b-5qhqj21kqm] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-list li[b-5qhqj21kqm] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
}

.step-list i[b-5qhqj21kqm] {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.step-visual img[b-5qhqj21kqm] {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.faq-container[b-5qhqj21kqm] {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .landing-section[b-5qhqj21kqm] {
        padding: 4rem 0;
    }
    
    .section-header[b-5qhqj21kqm] {
        margin-bottom: 3rem;
    }
    
    .step-row[b-5qhqj21kqm] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-row-reverse[b-5qhqj21kqm] {
        direction: ltr;
    }
    
    .how-it-works-steps[b-5qhqj21kqm] {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .landing-section[b-5qhqj21kqm] {
        padding: 3rem 0;
    }
    
    .section-container[b-5qhqj21kqm] {
        padding: 0 1.5rem;
    }
    
    .features-grid[b-5qhqj21kqm] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header[b-5qhqj21kqm] {
        margin-bottom: 2rem;
    }
}
        height: 500px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;[b-5qhqj21kqm]
    }

    .landing-hero[b-5qhqj21kqm]::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: rgba(236, 72, 153, 0.1);
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
    }

    .landing-hero .row[b-5qhqj21kqm] {
        position: relative;
        z-index: 1;
    }

    .landing-hero h1[b-5qhqj21kqm] {
        line-height: 1.2;
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out;
    }

    .landing-hero .lead[b-5qhqj21kqm] {
        font-size: 1.25rem;
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out 0.2s both;
    }

    .landing-hero .d-flex[b-5qhqj21kqm] {
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out 0.4s both;
    }

    .landing-hero .btn-light[b-5qhqj21kqm] {
        background-color: white;
        border-color: white;
        color: var(--brand-primary);
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .landing-hero .btn-light:hover[b-5qhqj21kqm] {
        background-color: #f3f4f6;
        border-color: #f3f4f6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .landing-hero .btn-outline-light[b-5qhqj21kqm] {
        border-width: 2px;
        color: white;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .landing-hero .btn-outline-light:hover[b-5qhqj21kqm] {
        background-color: white;
        border-color: white;
        color: var(--brand-primary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .placeholder-image[b-5qhqj21kqm] {
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out 0.3s both;
    }

    /* Feature Cards */
    .feature-card[b-5qhqj21kqm] {
        transition: all 0.3s ease;
        border-radius: 1rem;
        overflow: hidden;
    }

    .feature-card:hover[b-5qhqj21kqm] {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
    }

    .feature-icon[b-5qhqj21kqm] {
        font-size: 2.5rem;
        color: var(--brand-primary);
        transition: all 0.3s ease;
    }

    .feature-card:hover .feature-icon[b-5qhqj21kqm] {
        color: var(--brand-secondary);
        transform: scale(1.1);
    }

    .feature-card .card-title[b-5qhqj21kqm] {
        color: var(--brand-dark);
        transition: color 0.3s ease;
    }

    .feature-card:hover .card-title[b-5qhqj21kqm] {
        color: var(--brand-primary);
    }

    /* Navbar */
    .navbar[b-5qhqj21kqm] {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    }

    .navbar-brand[b-5qhqj21kqm] {
        font-size: 1.25rem;
        background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-weight: 700;
        letter-spacing: -0.5px;
        position: relative;
    }

    .navbar-brand i[b-5qhqj21kqm] {
        font-size: 1.5rem;
        background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .navbar-brand:hover[b-5qhqj21kqm] {
        transform: none;
    }

    .navbar-nav .nav-link[b-5qhqj21kqm] {
        color: var(--brand-dark) !important;
        font-weight: 500;
        margin: 0 0.75rem;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.95rem;
    }

    .navbar-nav .nav-link[b-5qhqj21kqm]::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--brand-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover[b-5qhqj21kqm]::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover[b-5qhqj21kqm] {
        color: var(--brand-primary) !important;
    }

    .navbar .btn-primary[b-5qhqj21kqm] {
        background-color: var(--brand-primary);
        border-color: var(--brand-primary);
        font-weight: 600;
        padding: 0.5rem 1.5rem;
        transition: all 0.3s ease;
    }

    .navbar .btn-primary:hover[b-5qhqj21kqm] {
        background-color: var(--brand-secondary);
        border-color: var(--brand-secondary);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    }

    /* Sections */
    section[b-5qhqj21kqm] {
        scroll-margin-top: 80px;
        transition: background-color 0.6s ease;
    }

    #features[b-5qhqj21kqm] {
        background-color: #f8f9ff;
        background-image: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    }

    #how-it-works[b-5qhqj21kqm] {
        background-color: #ffffff;
        background-image: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    }

    #faq[b-5qhqj21kqm] {
        background-color: #f9fafb;
        background-image: radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    }

    #features .display-5[b-5qhqj21kqm],
    #how-it-works .display-5[b-5qhqj21kqm],
    #faq .display-5[b-5qhqj21kqm] {
        color: var(--brand-dark);
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out;
    }

    .lead.text-muted[b-5qhqj21kqm] {
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out 0.1s both;
    }

    /* How It Works */
    .row[b-5qhqj21kqm] {
        animation: fadeInUp-b-5qhqj21kqm 0.8s ease-out;
    }

    #how-it-works h3[b-5qhqj21kqm] {
        color: var(--brand-dark);
        font-size: 1.75rem;
    }

    #how-it-works .bi-check-circle-fill[b-5qhqj21kqm] {
        font-size: 1.25rem;
    }

    /* Accordion */
    .accordion-button[b-5qhqj21kqm] {
        font-weight: 500;
        color: var(--brand-dark);
    }

    .accordion-button:not(.collapsed)[b-5qhqj21kqm] {
        background-color: var(--brand-light);
        color: var(--brand-primary);
        box-shadow: none;
    }

    .accordion-button[b-5qhqj21kqm]::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .accordion-button:focus[b-5qhqj21kqm] {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
    }

    .accordion-item[b-5qhqj21kqm] {
        border-color: #e5e7eb;
    }

    .accordion-body[b-5qhqj21kqm] {
        color: #6b7280;
        line-height: 1.6;
    }

    /* Footer */
    footer[b-5qhqj21kqm] {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        border-top: 1px solid #374151;
    }

    footer h6[b-5qhqj21kqm] {
        color: white;
    }

    .hover-link[b-5qhqj21kqm] {
        transition: all 0.3s ease;
    }

    .hover-link:hover[b-5qhqj21kqm] {
        color: var(--brand-primary) !important;
        transform: translateX(4px);
        display: inline-block;
    }

    /* Footer text colors */
    .text-white-75[b-5qhqj21kqm] {
        color: rgba(255, 255, 255, 0.75);
    }

    /* CTA Section */
    #features + section + section + section[b-5qhqj21kqm] {
        padding: 6rem 0;
    }

    /* Animations */
    @keyframes fadeInUp-b-5qhqj21kqm {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .landing-hero h1[b-5qhqj21kqm] {
            font-size: 2rem;
        }

        .landing-hero .lead[b-5qhqj21kqm] {
            font-size: 1rem;
        }

        .landing-hero .d-flex[b-5qhqj21kqm] {
            flex-direction: column;
        }

        .landing-hero .d-flex .btn[b-5qhqj21kqm] {
            width: 100%;
        }

        #how-it-works h3[b-5qhqj21kqm] {
            font-size: 1.5rem;
            margin-top: 2rem;
        }

        section[b-5qhqj21kqm] {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .navbar-nav .nav-link[b-5qhqj21kqm] {
            margin: 0;
            padding: 0.5rem 0;
        }
    }

    /* Smooth scroll behavior */
    html[b-5qhqj21kqm] {
        scroll-behavior: smooth;
    }
}

/* Pricing Section */
.pricing-intro[b-5qhqj21kqm] {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.pricing-grid[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.pricing-card[b-5qhqj21kqm] {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card[b-5qhqj21kqm]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover[b-5qhqj21kqm] {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.pricing-card:hover[b-5qhqj21kqm]::before {
    opacity: 1;
}

.pricing-card-featured[b-5qhqj21kqm] {
    border-color: #667eea;
    border-width: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
}

.pricing-card-featured:hover[b-5qhqj21kqm] {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.pricing-badge[b-5qhqj21kqm] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-card-header[b-5qhqj21kqm] {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title[b-5qhqj21kqm] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pricing-subtitle[b-5qhqj21kqm] {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

.pricing-value[b-5qhqj21kqm] {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-price[b-5qhqj21kqm] {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.pricing-frequency[b-5qhqj21kqm] {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-pitch[b-5qhqj21kqm] {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-features[b-5qhqj21kqm] {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex: 1;
}

.pricing-features li[b-5qhqj21kqm] {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child[b-5qhqj21kqm] {
    border-bottom: none;
}

.pricing-features li i[b-5qhqj21kqm] {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-cta[b-5qhqj21kqm] {
    text-align: center;
    margin-top: auto;
}

.pricing-cta .btn[b-5qhqj21kqm] {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-cta .btn-lg[b-5qhqj21kqm] {
    padding: 1.125rem 2.5rem;
}

.pricing-note[b-5qhqj21kqm] {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Trust Indicators */
.pricing-trust[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.trust-item[b-5qhqj21kqm] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.trust-item i[b-5qhqj21kqm] {
    font-size: 1.75rem;
    color: #667eea;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.trust-item p[b-5qhqj21kqm] {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Home Calendar Section */
.home-calendar-section[b-5qhqj21kqm] {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    min-height: 100vh;
}

.calendar-header[b-5qhqj21kqm] {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.calendar-header h1[b-5qhqj21kqm] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.calendar-header p[b-5qhqj21kqm] {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.week-calendar[b-5qhqj21kqm] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.week-navigator[b-5qhqj21kqm] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.nav-button[b-5qhqj21kqm] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-button:hover:not(:disabled)[b-5qhqj21kqm] {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-button:disabled[b-5qhqj21kqm] {
    opacity: 0.4;
    cursor: not-allowed;
}

.arrow[b-5qhqj21kqm] {
    font-weight: 700;
}

.week-info[b-5qhqj21kqm] {
    text-align: center;
}

.week-title[b-5qhqj21kqm] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.week-dates[b-5qhqj21kqm] {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.completion-stats[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item[b-5qhqj21kqm] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-label[b-5qhqj21kqm] {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-value[b-5qhqj21kqm] {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenges-grid[b-5qhqj21kqm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.challenge-card[b-5qhqj21kqm] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.challenge-card:hover[b-5qhqj21kqm] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.challenge-card.completed[b-5qhqj21kqm] {
    background: linear-gradient(135deg, #f0fdf4 0%, #f0fdf4 100%);
    border-color: #10b981;
}

.challenge-header[b-5qhqj21kqm] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.challenge-icon[b-5qhqj21kqm] {
    font-size: 2rem;
    line-height: 1;
}

.check-mark[b-5qhqj21kqm] {
    color: #10b981;
    font-size: 1.5rem;
}

.challenge-title[b-5qhqj21kqm] {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.challenge-card.completed .challenge-title[b-5qhqj21kqm] {
    text-decoration: line-through;
    color: #6b7280;
}

.challenge-category[b-5qhqj21kqm] {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
    text-transform: capitalize;
}

.no-challenges[b-5qhqj21kqm] {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.no-challenges p[b-5qhqj21kqm] {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.subscription-prompt[b-5qhqj21kqm] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
}

.prompt-content[b-5qhqj21kqm] {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.prompt-content h2[b-5qhqj21kqm] {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.prompt-content p[b-5qhqj21kqm] {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* /Pages/Privacy.razor.rz.scp.css */
/* ============================================
   Legal Page Styles (Privacy Policy)
   ============================================ */

.legal-page-wrapper[b-fkip8rd7vx] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.legal-header[b-fkip8rd7vx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container[b-fkip8rd7vx] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-fkip8rd7vx] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.brand-logo:hover[b-fkip8rd7vx] {
    color: rgba(255, 255, 255, 0.9);
}

.header-actions[b-fkip8rd7vx] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header-signup[b-fkip8rd7vx],
.btn-header-signin[b-fkip8rd7vx] {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-header-signup[b-fkip8rd7vx] {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-header-signup:hover[b-fkip8rd7vx] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-header-signin[b-fkip8rd7vx] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-header-signin:hover[b-fkip8rd7vx] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Language selector inherits default styles from LanguageSelector.razor.css */
/* No override needed - transparent background with white text works on gradient */

.legal-content[b-fkip8rd7vx] {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.legal-container[b-fkip8rd7vx] {
    background-color: #ffffff;
}

.legal-title[b-fkip8rd7vx] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-updated[b-fkip8rd7vx] {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section[b-fkip8rd7vx] {
    margin-bottom: 3rem;
}

.legal-section h2[b-fkip8rd7vx] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.legal-section h3[b-fkip8rd7vx] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p[b-fkip8rd7vx] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul[b-fkip8rd7vx],
.legal-section ol[b-fkip8rd7vx] {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li[b-fkip8rd7vx] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 0.75rem;
}

.legal-section li strong[b-fkip8rd7vx] {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-warning[b-fkip8rd7vx] {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-warning strong[b-fkip8rd7vx] {
    color: #92400e;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header[b-fkip8rd7vx] {
        padding: 1rem 1.5rem;
    }

    .brand-section[b-fkip8rd7vx] {
        gap: 0.5rem;
    }

    .header-icon[b-fkip8rd7vx] {
        width: 28px;
        height: 28px;
    }

    .brand-logo[b-fkip8rd7vx] {
        font-size: 1.5rem;
    }

    .header-actions[b-fkip8rd7vx] {
        gap: 0.5rem;
    }

    .btn-header-signup[b-fkip8rd7vx],
    .btn-header-signin[b-fkip8rd7vx] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-header-signin[b-fkip8rd7vx] {
        display: none;
    }

    .legal-content[b-fkip8rd7vx] {
        padding: 2rem 1.5rem;
    }

    .legal-title[b-fkip8rd7vx] {
        font-size: 2rem;
    }

    .legal-section h2[b-fkip8rd7vx] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-fkip8rd7vx] {
        font-size: 1.125rem;
    }
}
/* /Pages/Support.razor.rz.scp.css */
/* ============================================
   Legal Page Styles (Support Page)
   ============================================ */

.legal-page-wrapper[b-l3xjsexjlf] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.legal-header[b-l3xjsexjlf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container[b-l3xjsexjlf] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-l3xjsexjlf] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.brand-logo:hover[b-l3xjsexjlf] {
    color: rgba(255, 255, 255, 0.9);
}

.header-actions[b-l3xjsexjlf] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header-signup[b-l3xjsexjlf],
.btn-header-signin[b-l3xjsexjlf] {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-header-signup[b-l3xjsexjlf] {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-header-signup:hover[b-l3xjsexjlf] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-header-signin[b-l3xjsexjlf] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-header-signin:hover[b-l3xjsexjlf] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Language selector inherits default styles from LanguageSelector.razor.css */
/* No override needed - transparent background with white text works on gradient */

.legal-content[b-l3xjsexjlf] {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.legal-container[b-l3xjsexjlf] {
    background-color: #ffffff;
}

.legal-title[b-l3xjsexjlf] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-updated[b-l3xjsexjlf] {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section[b-l3xjsexjlf] {
    margin-bottom: 3rem;
}

.legal-section h2[b-l3xjsexjlf] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.legal-section h3[b-l3xjsexjlf] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p[b-l3xjsexjlf] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul[b-l3xjsexjlf],
.legal-section ol[b-l3xjsexjlf] {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li[b-l3xjsexjlf] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 0.75rem;
}

.legal-section li strong[b-l3xjsexjlf] {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-warning[b-l3xjsexjlf] {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-warning strong[b-l3xjsexjlf] {
    color: #92400e;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header[b-l3xjsexjlf] {
        padding: 1rem 1.5rem;
    }

    .brand-section[b-l3xjsexjlf] {
        gap: 0.5rem;
    }

    .header-icon[b-l3xjsexjlf] {
        width: 28px;
        height: 28px;
    }

    .brand-logo[b-l3xjsexjlf] {
        font-size: 1.5rem;
    }

    .header-actions[b-l3xjsexjlf] {
        gap: 0.5rem;
    }

    .btn-header-signup[b-l3xjsexjlf],
    .btn-header-signin[b-l3xjsexjlf] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-header-signin[b-l3xjsexjlf] {
        display: none;
    }

    .legal-content[b-l3xjsexjlf] {
        padding: 2rem 1.5rem;
    }

    .legal-title[b-l3xjsexjlf] {
        font-size: 2rem;
    }

    .legal-section h2[b-l3xjsexjlf] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-l3xjsexjlf] {
        font-size: 1.125rem;
    }
}
/* /Pages/Terms.razor.rz.scp.css */
/* ============================================
   Legal Page Styles
   ============================================ */

.legal-page-wrapper[b-5nghykfg9s] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.legal-header[b-5nghykfg9s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container[b-5nghykfg9s] {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo[b-5nghykfg9s] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.brand-logo:hover[b-5nghykfg9s] {
    color: rgba(255, 255, 255, 0.9);
}

.header-actions[b-5nghykfg9s] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-header-signup[b-5nghykfg9s],
.btn-header-signin[b-5nghykfg9s] {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-header-signup[b-5nghykfg9s] {
    background: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.btn-header-signup:hover[b-5nghykfg9s] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #000;
}

.btn-header-signin[b-5nghykfg9s] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-header-signin:hover[b-5nghykfg9s] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Language selector inherits default styles from LanguageSelector.razor.css */
/* No override needed - transparent background with white text works on gradient */

.legal-content[b-5nghykfg9s] {
    flex: 1;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.legal-container[b-5nghykfg9s] {
    background-color: #ffffff;
}

.legal-title[b-5nghykfg9s] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.legal-updated[b-5nghykfg9s] {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section[b-5nghykfg9s] {
    margin-bottom: 3rem;
}

.legal-section h2[b-5nghykfg9s] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
    letter-spacing: -0.01em;
}

.legal-section h3[b-5nghykfg9s] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.legal-section p[b-5nghykfg9s] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 1rem;
}

.legal-section ul[b-5nghykfg9s],
.legal-section ol[b-5nghykfg9s] {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li[b-5nghykfg9s] {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 0.75rem;
}

.legal-section li strong[b-5nghykfg9s] {
    color: #1a1a1a;
    font-weight: 600;
}

.legal-warning[b-5nghykfg9s] {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.legal-warning strong[b-5nghykfg9s] {
    color: #92400e;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-header[b-5nghykfg9s] {
        padding: 1rem 1.5rem;
    }

    .brand-section[b-5nghykfg9s] {
        gap: 0.5rem;
    }

    .header-icon[b-5nghykfg9s] {
        width: 28px;
        height: 28px;
    }

    .brand-logo[b-5nghykfg9s] {
        font-size: 1.5rem;
    }

    .header-actions[b-5nghykfg9s] {
        gap: 0.5rem;
    }

    .btn-header-signup[b-5nghykfg9s],
    .btn-header-signin[b-5nghykfg9s] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .btn-header-signin[b-5nghykfg9s] {
        display: none;
    }

    .legal-content[b-5nghykfg9s] {
        padding: 2rem 1.5rem;
    }

    .legal-title[b-5nghykfg9s] {
        font-size: 2rem;
    }

    .legal-section h2[b-5nghykfg9s] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-5nghykfg9s] {
        font-size: 1.125rem;
    }
}
