* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.onboarding-container {
    position: relative;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
}

.onboarding-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateX(100%);
    z-index: 1;
}

.onboarding-screen.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.onboarding-screen#screen-1 {
    background-image: url('fitness-bg.png');
}

.onboarding-screen#screen-2 {
    background-image: url('fitness-bg-2.png');
}

.onboarding-screen#screen-3 {
    background-image: url('fitness-bg-3.png');
}

.onboarding-screen#screen-4,
.onboarding-screen#screen-13,
.onboarding-screen#screen-14,
.onboarding-screen#screen-15,
.onboarding-screen#screen-22,
.onboarding-screen#screen-23,
.onboarding-screen#screen-24,
.onboarding-screen#screen-25,
.onboarding-screen#screen-26,
.onboarding-screen#screen-27,
.onboarding-screen#screen-28,
.onboarding-screen#screen-29,
.onboarding-screen#screen-30,
.onboarding-screen#screen-31,
.onboarding-screen#screen-32,
.onboarding-screen#screen-33,
.onboarding-screen#screen-34,
.onboarding-screen#screen-35,
.onboarding-screen#screen-38,
.onboarding-screen#screen-39,
.onboarding-screen#screen-40 {
    background-color: #000;
    justify-content: flex-start;
}

.onboarding-screen#screen-22,
.onboarding-screen#screen-23,
.onboarding-screen#screen-24,
.onboarding-screen#screen-25,
.onboarding-screen#screen-26,
.onboarding-screen#screen-27,
.onboarding-screen#screen-28,
.onboarding-screen#screen-29,
.onboarding-screen#screen-30,
.onboarding-screen#screen-31,
.onboarding-screen#screen-32,
.onboarding-screen#screen-33,
.onboarding-screen#screen-34,
.onboarding-screen#screen-35 {
    transform: none !important;
}

.onboarding-screen#screen-22.active,
.onboarding-screen#screen-23.active,
.onboarding-screen#screen-24.active,
.onboarding-screen#screen-34.active {
    opacity: 1;
    z-index: 2;
}

/* Dark gradient overlay */
.onboarding-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 0;
}

.onboarding-screen#screen-4::before,
.onboarding-screen#screen-5::before,
.onboarding-screen#screen-6::before,
.onboarding-screen#screen-7::before,
.onboarding-screen#screen-8::before,
.onboarding-screen#screen-11::before,
.onboarding-screen#screen-12::before,
.onboarding-screen#screen-13::before,
.onboarding-screen#screen-14::before,
.onboarding-screen#screen-15::before,
.onboarding-screen#screen-16::before,
.onboarding-screen#screen-17::before,
.onboarding-screen#screen-18::before,
.onboarding-screen#screen-19::before,
.onboarding-screen#screen-20::before,
.onboarding-screen#screen-21::before,
.onboarding-screen#screen-22::before,
.onboarding-screen#screen-23::before,
.onboarding-screen#screen-24::before,
.onboarding-screen#screen-25::before,
.onboarding-screen#screen-26::before,
.onboarding-screen#screen-27::before,
.onboarding-screen#screen-28::before,
.onboarding-screen#screen-29::before,
.onboarding-screen#screen-30::before,
.onboarding-screen#screen-31::before,
.onboarding-screen#screen-32::before,
.onboarding-screen#screen-33::before,
.onboarding-screen#screen-34::before,
.onboarding-screen#screen-35::before,
.onboarding-screen#screen-38::before,
.onboarding-screen#screen-39::before,
.onboarding-screen#screen-40::before {
    display: none;
}

.content {
    position: relative;
    z-index: 1;
    padding: 0 30px 60px;
    text-align: center;
}

h1 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

h1 .bold {
    font-weight: 700;
}

.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bar {
    width: 25px;
    height: 4px;
    background-color: #555;
    border-radius: 2px;
}

.bar.active {
    background-color: #A855F7; /* Purple */
}

.start-btn {
    margin-top: 40px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

/* Setup Screens Styling */
.setup-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
}

.setup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.setup-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 60px;
}

.gender-selection {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.gender-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gender-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
    border: 3px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}
.gender-face-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(0.6);
    transition: filter 0.3s ease;
}
.gender-option.active .gender-face-img {
    filter: brightness(1);
}
.gender-option.active .gender-circle {
    border-color: #A855F7;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.5), 0 0 50px rgba(168, 85, 247, 0.2);
}

.gender-option.active .gender-label {
    color: white;
    font-weight: 600;
}

.gender-label {
    font-size: 16px;
    color: #888;
}

.setup-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.footer-left {
    margin-right: auto;
}

.back-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.back-btn:active {
    background-color: #333;
}

/* Age Selector Styling */
.age-selector-container, .height-selector-container, .goal-selector-container, .activity-selector-container {
    position: relative;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin-top: 20px;
}

.age-scroll-wheel, .height-scroll-wheel, .goal-scroll-wheel, .activity-scroll-wheel {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 120px 0;
}

.age-scroll-wheel::-webkit-scrollbar, .height-scroll-wheel::-webkit-scrollbar, .goal-scroll-wheel::-webkit-scrollbar, .activity-scroll-wheel::-webkit-scrollbar {
    display: none;
}

.age-number, .height-number, .height-ft-number, .height-in-number, .weight-kg-number, .weight-lb-number, .training-days-number, .goal-option, .activity-option {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #555;
    scroll-snap-align: center;
    transition: all 0.2s;
    text-align: center;
    padding: 0 20px;
}

.age-number.selected, .height-number.selected, .height-ft-number.selected, .height-in-number.selected, .weight-kg-number.selected, .weight-lb-number.selected, .training-days-number.selected, .goal-option.selected, .activity-option.selected {
    font-size: 32px;
    color: white;
    font-weight: 700;
}

.goal-option.selected {
    font-size: 26px;
}

.age-number.selected::after {
    content: '';
}

.height-unit-toggle {
    display: flex;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 4px;
    margin: 0 auto 16px;
    width: 160px;
}
.height-unit-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.height-unit-btn.active {
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
}
.height-ftin-container {
    position: relative;
}
.height-ftin-wheels {
    display: flex;
    width: 100%;
    height: 100%;
}
.height-ft-wheel,
.height-in-wheel {
    flex: 1;
}
.height-ft-number.selected::after {
    content: ' ft';
    font-size: 18px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}
.height-in-number.selected::after {
    content: ' in';
    font-size: 18px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}
.height-number.selected::after {
    content: ' cm';
    font-size: 18px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}
.weight-unit-toggle {
    display: flex;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 4px;
    margin: 0 auto 16px;
    width: 160px;
}
.weight-unit-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.weight-unit-btn.active {
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
}
.weight-kg-number.selected::after {
    content: ' kg';
    font-size: 18px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}
.weight-lb-number.selected::after {
    content: ' lb';
    font-size: 18px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}
.training-days-number.selected::after {
    content: ' days per week';
    font-size: 16px;
    margin-left: 8px;
    color: #A855F7;
    font-weight: 400;
}

.selection-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 60px;
    pointer-events: none;
    border-top: 2px solid #A855F7;
    border-bottom: 2px solid #A855F7;
}

.onboarding-screen#screen-9 {
    background-image: url('login-bg.png');
    background-size: cover;
    background-position: center;
}

.login-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    padding: 60px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
}

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

.tabs {
    display: flex;
    gap: 24px;
}

.tab {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    padding-bottom: 8px;
    cursor: pointer;
}

.tab.active {
    color: white;
    border-bottom: 3px solid #A855F7;
}

.avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #A855F7;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.login-welcome {
    margin-bottom: 40px;
}

.login-welcome h1 {
    font-size: 32px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 0;
}

.login-welcome h1.bold {
    font-weight: 700;
}

.login-method-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 4px;
}
.login-method-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.login-method-btn.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: #fff;
}
.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
}
.phone-prefix {
    padding: 14px 12px 14px 16px;
    color: #A855F7;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}
.phone-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 14px 16px;
    outline: none;
}
.phone-input-wrapper input::placeholder {
    color: rgba(255,255,255,0.3);
}
.phone-hint {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-top: -12px;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 14px;
    color: #999;
}

.input-group input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 16px;
    outline: none;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 48px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.forgot-password {
    color: #A855F7;
    font-size: 14px;
    text-decoration: none;
    text-align: right;
}

.social-login {
    display: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.login-footer {
    margin-top: auto;
}

.login-btn-primary {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.onboarding-screen#screen-10 {
    background-image: url('signup-bg.png');
    background-size: cover;
    background-position: center;
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 60px !important;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}

.verification-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 60px;
}

.pin-input {
    width: 45px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 24px;
    text-align: center;
    outline: none;
    transition: border-color 0.3s;
}

.pin-input:focus {
    border-bottom-color: #A855F7;
}

.dashboard-container {
    padding: 20px 25px 100px;
    height: 100%;
    overflow-y: auto;
    background-color: #000;
}

.dashboard-logo {
    flex-shrink: 0;
}

.dashboard-brand-logo {
    max-width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 12px;
}

.greeting p {
    color: #999;
    font-size: 14px;
}

.greeting h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    text-align: left;
}

.profile-mini {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #A855F7;
}

.profile-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.current-date, .see-all {
    font-size: 13px;
    color: #A855F7;
}

.workout-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 160px;
    margin-bottom: 25px;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.workout-time, .workout-subtitle {
    font-size: 13px;
    color: #ccc;
}

.daily-week-strip {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.daily-week-strip::-webkit-scrollbar { display: none; }
.daily-week-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
    padding: 8px 6px;
    border-radius: 12px;
    background: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.daily-week-day span:first-child {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.daily-week-day span:last-child {
    font-size: 11px;
    color: #ccc;
    white-space: nowrap;
}
.daily-week-day.today {
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    transform: scale(1.05);
}
.daily-week-day.today span:first-child,
.daily-week-day.today span:last-child {
    color: #fff;
    font-weight: 600;
}
.daily-week-day.rest span:last-child {
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.ai-plan-section { margin-bottom: 20px; }
.ai-plan-card {
    background: linear-gradient(145deg, rgba(168,85,247,0.08), rgba(126,34,206,0.04));
    border: 1px solid rgba(168,85,247,0.15);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ai-plan-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(168,85,247,0.12);
    display: flex; align-items: center; justify-content: center;
}
.ai-plan-info h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 4px 0; }
.ai-plan-info p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.4; }
.ai-plan-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff; border: none; border-radius: 14px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}
.ai-plan-btn:active { transform: scale(0.97); opacity: 0.9; }
.ai-plan-generating {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px;
    background: rgba(168,85,247,0.06);
    border-radius: 14px;
    margin-top: 10px;
}
.ai-plan-generating p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.ai-plan-card.generated .ai-plan-btn { background: rgba(255,255,255,0.06); }
.ai-plan-card.generated .ai-plan-btn::after { content: ' (Regenerate)'; }

.nutrition-section { margin-bottom: 20px; }
.nutrition-section .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.nutrition-section .section-header h2 { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.nutrition-cals { font-size: 13px; color: #A855F7; font-weight: 600; }
.nutrition-summary {
    display: flex; gap: 10px; margin-bottom: 16px;
}
.nutrition-macro {
    flex: 1; background: rgba(255,255,255,0.04);
    border-radius: 14px; padding: 14px; text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.nutrition-macro-value { font-size: 20px; font-weight: 700; color: #fff; display: block; }
.nutrition-macro-label { font-size: 11px; color: rgba(255,255,255,0.4); display: block; margin-top: 2px; }
.nutrition-macro.protein .nutrition-macro-value { color: #A855F7; }
.nutrition-macro.carbs .nutrition-macro-value { color: #3B82F6; }
.nutrition-macro.fat .nutrition-macro-value { color: #F59E0B; }

.nutrition-meal-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 16px; padding: 16px; margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}
.nutrition-meal-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.nutrition-meal-title { font-size: 14px; font-weight: 600; color: #fff; }
.nutrition-meal-cals { font-size: 12px; color: rgba(255,255,255,0.4); }
.nutrition-meal-items { display: flex; flex-direction: column; gap: 6px; }
.nutrition-meal-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 12px; background: rgba(255,255,255,0.03); border-radius: 10px;
}
.nutrition-meal-item-name { font-size: 13px; color: rgba(255,255,255,0.8); }
.nutrition-meal-item-detail { font-size: 11px; color: rgba(255,255,255,0.35); }

.ai-plan-buttons { display: flex; flex-direction: column; gap: 8px; }
.ai-plan-view-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    background: rgba(168,85,247,0.1);
    border: 1px solid rgba(168,85,247,0.25);
    color: #A855F7; border-radius: 14px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background 0.2s;
}
.ai-plan-view-btn:active { background: rgba(168,85,247,0.2); }

.myplan-page {
    width: 100%; height: 100%; overflow-y: auto;
    padding: 0 20px 30px; box-sizing: border-box;
}
.myplan-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; position: sticky; top: 0; background: #000; z-index: 10;
}
.myplan-header h1 { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.myplan-back, .myplan-regen {
    background: rgba(255,255,255,0.06); border: none; border-radius: 12px;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.myplan-tabs {
    display: flex; gap: 8px; margin-bottom: 20px;
    background: rgba(255,255,255,0.04); border-radius: 14px; padding: 4px;
}
.myplan-tab {
    flex: 1; padding: 12px; border: none; border-radius: 12px;
    background: transparent; color: rgba(255,255,255,0.5);
    font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.myplan-tab.active {
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
}
.myplan-content { min-height: 200px; }
.myplan-empty { text-align: center; color: rgba(255,255,255,0.3); font-size: 14px; padding: 40px 0; }

.myplan-week {
    display: flex; gap: 6px; margin-bottom: 16px; overflow-x: auto;
    padding-bottom: 4px;
}
.myplan-week::-webkit-scrollbar { display: none; }
.myplan-day-chip {
    flex-shrink: 0; padding: 10px 14px; border-radius: 12px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    text-align: center; cursor: pointer; transition: all 0.2s; min-width: 60px;
}
.myplan-day-chip.active {
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    border-color: #A855F7;
}
.myplan-day-chip.rest { opacity: 0.5; }
.myplan-day-name { font-size: 11px; color: rgba(255,255,255,0.5); display: block; }
.myplan-day-chip.active .myplan-day-name { color: rgba(255,255,255,0.8); }
.myplan-day-category { font-size: 12px; color: #fff; font-weight: 600; display: block; margin-top: 2px; }

.myplan-day-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 18px; padding: 18px; margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.04);
}
.myplan-day-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.myplan-day-subtitle { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0 0 14px; }
.myplan-day-stats {
    display: flex; gap: 16px; margin-bottom: 16px;
}
.myplan-stat { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.5); }
.myplan-stat svg { flex-shrink: 0; }

.myplan-exercise-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.myplan-exercise {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; background: rgba(255,255,255,0.03);
    border-radius: 12px; border: 1px solid rgba(255,255,255,0.04);
}
.myplan-exercise-name { font-size: 14px; color: #fff; font-weight: 500; }
.myplan-exercise-info { font-size: 12px; color: rgba(255,255,255,0.4); }

.myplan-start-btn {
    width: 100%; padding: 14px; border: none; border-radius: 14px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff; font-size: 15px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.myplan-start-btn:active { opacity: 0.9; transform: scale(0.98); }

.myplan-rest-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 18px; padding: 30px 20px; text-align: center;
    border: 1px solid rgba(255,255,255,0.04);
}
.myplan-rest-icon { font-size: 40px; margin-bottom: 12px; }
.myplan-rest-title { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.myplan-rest-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; margin: 0; }

.myplan-nutrition-macros {
    display: flex; gap: 10px; margin-bottom: 20px;
}
.myplan-macro-card {
    flex: 1; background: rgba(255,255,255,0.04);
    border-radius: 16px; padding: 16px; text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.myplan-macro-value { font-size: 22px; font-weight: 700; display: block; }
.myplan-macro-label { font-size: 11px; color: rgba(255,255,255,0.4); display: block; margin-top: 4px; }
.myplan-macro-card.protein .myplan-macro-value { color: #A855F7; }
.myplan-macro-card.carbs .myplan-macro-value { color: #3B82F6; }
.myplan-macro-card.fat .myplan-macro-value { color: #F59E0B; }
.myplan-cals-header {
    text-align: center; margin-bottom: 16px;
}
.myplan-cals-value { font-size: 28px; font-weight: 700; color: #fff; }
.myplan-cals-label { font-size: 12px; color: rgba(255,255,255,0.4); display: block; margin-top: 2px; }

.myplan-meal-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 16px; padding: 16px; margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}
.myplan-meal-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.myplan-meal-type { font-size: 15px; font-weight: 600; color: #fff; }
.myplan-meal-cals { font-size: 12px; color: #A855F7; font-weight: 600; }
.myplan-meal-name { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0 0 8px; }
.myplan-meal-macros {
    display: flex; gap: 12px;
}
.myplan-meal-macro { font-size: 11px; color: rgba(255,255,255,0.35); }
.myplan-meal-macro span { font-weight: 600; color: rgba(255,255,255,0.6); }

.daily-workout-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}
.daily-workout-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
    border-radius: 50%;
}
.daily-workout-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.daily-workout-label {
    font-size: 11px;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.daily-workout-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 4px 0 8px;
}
.daily-workout-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.daily-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #aaa;
}
.daily-meta-item svg {
    flex-shrink: 0;
}
.daily-workout-exercises {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.daily-exercise-tag {
    background: rgba(168,85,247,0.12);
    color: #c084fc;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.daily-start-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.daily-start-btn:active {
    opacity: 0.85;
}
.daily-book-btn {
    width: 100%;
    padding: 13px;
    border: 1px solid rgba(168,85,247,0.4);
    border-radius: 14px;
    background: transparent;
    color: #A855F7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    transition: background 0.2s, opacity 0.2s;
}
.daily-book-btn:active {
    background: rgba(168,85,247,0.1);
    opacity: 0.85;
}
.daily-workout-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 12px;
}
.daily-workout-loading p {
    color: #888;
    font-size: 13px;
}

.category-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}


.horizontal-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.mini-card {
    min-width: 140px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #111;
    cursor: pointer;
    transition: transform 0.2s;
}

.mini-card:active {
    transform: scale(0.95);
}

.mini-card img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

.mini-info {
    padding: 10px;
}

.mini-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
}

.mini-info span {
    font-size: 12px;
    color: #777;
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    z-index: 10;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.nav-item {
    color: #555;
    transition: color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    padding: 6px 8px;
}

.nav-item.active {
    color: #A855F7;
}

.workout-detail-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow-y: auto;
    padding-bottom: 100px;
}

.detail-header {
    position: relative;
    width: 100%;
    height: 250px;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-back {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 10;
}

.detail-content {
    padding: 0 25px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.workout-info-card {
    background-color: #111;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.info-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-header p {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.stats-row {
    display: flex;
    gap: 15px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #222;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #ccc;
}

.stat-badge svg {
    color: #A855F7;
}

.description-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 30px;
}

.exercise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #111;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.ex-thumb {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
}

.ex-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ex-details {
    flex: 1;
}

.ex-details h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.ex-details p {
    font-size: 13px;
    color: #666;
}

.ex-action {
    color: #555;
}

.workout-phase-label {
    font-size: 13px;
    font-weight: 700;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 16px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.ex-type-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.warmup-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.cooldown-badge {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
}

.phase-icon {
    margin-right: 6px;
    font-size: 14px;
}

.warmup-icon { color: #F59E0B; }
.exercise-icon { color: #A855F7; }
.cooldown-icon { color: #38BDF8; }

.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
}

.ai-loading p {
    color: #999;
    font-size: 13px;
}

.ai-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(168, 85, 247, 0.2);
    border-top-color: #A855F7;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ai-user-summary {
    padding: 12px 16px;
    margin: 0 0 12px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.ai-params {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-params span {
    font-size: 11px;
    color: #aaa;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px 8px;
    border-radius: 6px;
}

.ex-rest-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.12);
    color: #C084FC;
    white-space: nowrap;
}

.detail-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
    padding: 20px 25px;
    background: linear-gradient(to top, #000 80%, transparent 100%);
    z-index: 10;
}

.start-workout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    margin-bottom: 10px;
}

.take-appointment-detail-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 16px;
    color: #C084FC;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.take-appointment-detail-btn:hover {
    background: rgba(168, 85, 247, 0.1);
}

.categories-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
    overflow-y: auto;
    padding-bottom: 100px;
}

.categories-header {
    display: flex;
    align-items: center;
    padding: 50px 20px 20px;
}

.categories-title {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.header-spacer {
    width: 50px;
}

.premium-user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(126, 34, 206, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin: 0 20px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #C084FC;
}

.segment-control {
    display: flex;
    background-color: #111;
    border-radius: 30px;
    padding: 4px;
    margin: 0 20px 30px;
    gap: 4px;
}

.segment-btn {
    flex: 1;
    padding: 12px 8px;
    border: none;
    border-radius: 26px;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.segment-btn.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.category-cards {
    padding: 0 20px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 180px;
    margin-bottom: 20px;
    cursor: pointer;
}

.category-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.category-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.category-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.category-card-content p {
    font-size: 13px;
    color: #ccc;
}

.nav-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #A855F7;
}

.nav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #A855F7;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    width: 320px;
    background-color: #111;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.modal-header {
    position: relative;
    height: 180px;
}

.modal-header .modal-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-badge.orange {
    background-color: #F97316;
}

.mini-pro-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.4;
}
.mini-card[data-premium="true"] { position: relative; }
.mini-card[data-premium="true"].unlocked .mini-pro-badge {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}
.mini-card[data-premium="true"].unlocked .mini-pro-badge::after { content: ' ✓'; }

.program-pro-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.program-card[data-premium="true"] { position: relative; }
.program-card[data-premium="true"].unlocked .program-pro-badge {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}
.program-card[data-premium="true"].unlocked .program-pro-badge::after { content: ' ✓'; }

#workout-premium-modal .wpm-container {
    width: 320px;
    background: #111;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.wpm-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
#workout-premium-modal .wpm-container { position: relative; }
.wpm-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(168,85,247,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.wpm-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.wpm-subtitle {
    color: #888;
    font-size: 13px;
    margin: 0 0 24px;
    line-height: 1.4;
}
.wpm-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    text-align: left;
}
.wpm-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 13px;
}
.wpm-upgrade-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}
.wpm-later-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    cursor: pointer;
}

.modal-body {
    padding: 24px;
    text-align: center;
}

.modal-body h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.modal-body p {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.modal-action-btn {
    width: 100%;
    margin-bottom: 12px;
}

.cancel-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
}

.cancel-btn:hover {
    color: white;
}

.booking-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
}

.booking-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 30px;
}

.trainer-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #111;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.trainer-card:active {
    background-color: #1a1a1a;
}

.trainer-photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #A855F7;
    object-fit: cover;
}

.trainer-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trainer-specialty {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.trainer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    font-size: 14px;
}

.rating-value {
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.rating-count {
    font-size: 12px;
    color: #666;
}

.booking-section {
    margin-bottom: 28px;
}

.section-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.date-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.date-scroll::-webkit-scrollbar {
    display: none;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 56px;
    padding: 14px 10px;
    border-radius: 16px;
    background-color: #111;
    border: 1px solid #222;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-item.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.date-day {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.date-item.active .date-day {
    color: rgba(255,255,255,0.8);
}

.date-num {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.time-slot {
    padding: 14px;
    text-align: center;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

.session-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.session-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.session-type-card span {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-align: center;
}

.session-type-card.active {
    border-color: #A855F7;
    background-color: rgba(168, 85, 247, 0.1);
}

.session-type-card.active span {
    color: white;
}

.session-type-card.active svg {
    stroke: #A855F7;
}

.summary-card {
    background-color: #111;
    border-radius: 18px;
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: #666;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.summary-divider {
    height: 1px;
    background-color: #222;
}

.booking-footer {
    padding: 10px 0 20px;
}

.confirm-appointment-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.modal-subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #888;
}

.modal-accent-bar {
    width: 3px;
    height: 14px;
    background-color: #F59E0B;
    border-radius: 2px;
    display: inline-block;
}

.modal-appointment-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #C084FC 0%, #A855F7 100%);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.modal-pricing-info {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 16px;
}

.modal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.modal-price-label {
    font-size: 14px;
    color: #999;
}

.modal-price-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.modal-premium-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
}

.modal-premium-hint strong {
    color: #A855F7;
}

.modal-upgrade-link {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 30px;
    color: #A855F7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.modal-upgrade-link:hover {
    background: rgba(168, 85, 247, 0.1);
}

.premium-upgrade-header {
    position: relative;
    height: 220px;
}

.premium-header-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.premium-header-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.premium-header-text p {
    font-size: 13px;
    color: #ccc;
}

.modal-premium-action-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    border: none;
    border-radius: 30px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.premium-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(126, 34, 206, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 25px;
    cursor: pointer;
}

.premium-banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-banner h4 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.premium-banner p {
    font-size: 12px;
    color: #888;
}

.premium-banner-wrap { margin-bottom: 25px; }
.premium-banner-wrap .premium-banner { margin-bottom: 0; }

.premium-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    padding: 12px 16px;
    background: rgba(168,85,247,0.06);
    border: 1px solid rgba(168,85,247,0.15);
    border-top: none;
    border-radius: 0 0 16px 16px;
}
.pb-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.pb-item span {
    font-size: 11px;
    color: #aaa;
}
.premium-banner-wrap.is-premium .premium-benefits { display: none; }
.premium-banner-wrap.is-premium .premium-banner { border-radius: 16px; }

.trial-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 10px;
}
.trial-banner-icon {
    width: 32px;
    height: 32px;
    background: rgba(34,197,94,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trial-banner-text {
    display: flex;
    flex-direction: column;
}
.trial-label {
    font-size: 12px;
    font-weight: 700;
    color: #22C55E;
}
.trial-days {
    font-size: 11px;
    color: #888;
}

.premium-modal-header {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(126, 34, 206, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.premium-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
}

.premium-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 30px;
}

.premium-icon-wrapper {
    text-align: center;
    padding: 20px 0 30px;
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.premium-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.premium-subtext {
    font-size: 14px;
    color: #888;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background-color: #111;
    border-radius: 14px;
    margin-bottom: 10px;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.plans-section {
    margin-bottom: 30px;
}

.plan-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #111;
    border: 2px solid #222;
    border-radius: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card.active {
    border-color: #A855F7;
    background-color: rgba(168, 85, 247, 0.08);
}

.plan-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.plan-desc {
    font-size: 12px;
    color: #888;
}

.plan-price {
    text-align: right;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #A855F7;
}

.price-period {
    font-size: 12px;
    color: #888;
    display: block;
}

.best-value-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.premium-footer {
    padding: 10px 0 20px;
}

.subscribe-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    margin-bottom: 12px;
}

.restore-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.restore-btn:hover {
    color: #A855F7;
}

.upgrade-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
}

.upgrade-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px 40px;
    text-align: center;
}

.upgrade-icon-wrapper {
    margin-bottom: 24px;
}

.upgrade-lock-icon {
    width: 90px;
    height: 90px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.upgrade-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.upgrade-subtitle {
    font-size: 16px;
    color: #A855F7;
    font-weight: 600;
    margin-bottom: 16px;
}

.upgrade-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
}

.upgrade-features {
    width: 100%;
    margin-bottom: 36px;
}

.upgrade-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #111;
    border-radius: 12px;
    margin-bottom: 8px;
    text-align: left;
}

.upgrade-feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.upgrade-footer {
    width: 100%;
}

.be-premium-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    margin-bottom: 12px;
}

.upgrade-later-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.upgrade-later-btn:hover {
    color: white;
}

.payment-page,
.sessions-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
}

.payment-scroll,
.sessions-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 30px;
}

.payment-summary-card {
    margin-bottom: 20px;
}

.price-total-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(126, 34, 206, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
}

.price-total-label {
    font-size: 16px;
    color: #ccc;
}

.price-total-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-original {
    font-size: 16px;
    color: #666;
    text-decoration: line-through;
}

.price-total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #A855F7;
}

.pay-discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
}

.pay-discount-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #C084FC;
}

.pay-discount-amount {
    font-size: 15px;
    font-weight: 700;
    color: #22C55E;
}

.payment-method-section {
    margin-bottom: 24px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #111;
    border: 2px solid #222;
    border-radius: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: #A855F7;
    background-color: rgba(168, 85, 247, 0.08);
}

.payment-method-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method span {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.payment-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.payment-method.active .payment-radio {
    border-color: #A855F7;
    background: radial-gradient(circle, #A855F7 40%, transparent 45%);
}

.payment-method.active .payment-icon svg {
    stroke: #A855F7;
}

.payment-footer {
    padding: 10px 0 20px;
}

.pay-confirm-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.success-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    color: white;
}

.success-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}

.success-check-wrapper {
    margin-bottom: 24px;
}

.success-check {
    width: 90px;
    height: 90px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(34, 197, 94, 0.3);
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #22C55E;
}

.success-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.success-details {
    width: 100%;
    margin-bottom: 30px;
}

.success-actions {
    width: 100%;
}

.success-primary-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.success-secondary-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid #A855F7;
    border-radius: 16px;
    color: #A855F7;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.success-tertiary-btn {
    width: 100%;
    padding: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
}

.success-tertiary-btn:hover {
    color: white;
}

.session-card {
    background-color: #111;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 16px;
}

.session-card.completed {
    opacity: 0.5;
}

.session-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.session-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.session-status.upcoming {
    background-color: rgba(168, 85, 247, 0.15);
    color: #A855F7;
}

.session-status.done {
    background-color: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.session-date-label {
    font-size: 13px;
    color: #888;
}

.session-info {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.session-trainer-photo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #A855F7;
    object-fit: cover;
}

.session-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.session-details p {
    font-size: 13px;
    color: #888;
}

.session-actions {
    display: flex;
    gap: 8px;
}

.session-join-btn {
    flex: 1;
    padding: 10px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.session-join-btn:disabled {
    background: #333;
    color: #666;
    cursor: default;
}

.session-reschedule-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.session-reschedule-btn:disabled {
    color: #666;
    cursor: default;
}

.session-cancel-btn {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 12px;
    color: #EF4444;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.session-cancel-btn:disabled {
    color: #666;
    border-color: #222;
    cursor: default;
}

/* Progress / Activity Dashboard */
.progress-page {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px 12px;
}

.progress-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.date-selector {
    padding: 0 20px;
}

.month-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.month-arrow {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.month-arrow:hover {
    color: #A855F7;
}

.month-label {
    font-size: 15px;
    font-weight: 600;
    color: white;
    min-width: 130px;
    text-align: center;
}

.days-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}

.days-row::-webkit-scrollbar {
    display: none;
}

.day-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 42px;
    padding: 8px 4px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    border: none;
    color: #888;
}

.day-item.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: white;
}

.day-item.today {
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.day-name {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.day-num {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.day-item.active .day-num,
.day-item.active .day-name {
    color: white;
}

.progress-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 90px;
    scrollbar-width: none;
}

.progress-scroll::-webkit-scrollbar {
    display: none;
}

.activity-ring-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.activity-ring {
    position: relative;
    width: 200px;
    height: 200px;
}

.ring-svg {
    width: 100%;
    height: 100%;
}

.ring-progress {
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ring-calories {
    font-size: 36px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.ring-unit {
    font-size: 14px;
    font-weight: 600;
    color: #A855F7;
    margin-top: 2px;
}

.ring-label {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.stats-cards {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.stat-card {
    flex: 1;
    background: #111;
    border-radius: 18px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-card-ring {
    position: relative;
    width: 50px;
    height: 50px;
}

.stat-card-ring svg:first-child {
    width: 100%;
    height: 100%;
}

.stat-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.stat-card-info {
    text-align: center;
}

.stat-card-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.stat-card-label {
    display: block;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}

.finished-workouts-section {
    margin-bottom: 20px;
}

.finished-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.finished-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
}

.finished-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.finished-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finished-info {
    flex: 1;
}

.finished-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin: 0 0 3px;
}

.finished-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.finished-check {
    flex-shrink: 0;
}

/* Notifications Screen */
.notifications-page {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.notifications-header {
    padding: 54px 20px 16px;
    text-align: center;
}

.notifications-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.notif-tabs {
    display: flex;
    gap: 0;
    padding: 0 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid #1a1a1a;
}

.notif-tab {
    flex: 1;
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.notif-tab.active {
    color: #A855F7;
}

.notif-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #A855F7;
    border-radius: 2px;
}

.notif-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 90px;
    scrollbar-width: none;
}

.notif-list::-webkit-scrollbar {
    display: none;
}

.notif-item-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1px;
}

.notif-delete-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.notif-delete-bg svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #000;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    touch-action: pan-y;
}

.notif-item.swiped {
    transform: translateX(-80px);
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.notif-dot.unread {
    background: #A855F7;
}

.notif-dot.read {
    background: #333;
}

.notif-body {
    flex: 1;
    min-width: 0;
}

.notif-item-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.notif-item-msg {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-time {
    font-size: 11px;
    color: #555;
    flex-shrink: 0;
    margin-top: 2px;
    white-space: nowrap;
}

.notif-divider {
    height: 1px;
    background: #1a1a1a;
    margin: 0 20px;
}

/* Profile Screen */
.profile-page {
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.profile-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px 12px;
}

.profile-page-header .back-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}

.profile-page-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.profile-page-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 10px 20px 100px;
    scrollbar-width: none;
}

.profile-page-scroll::-webkit-scrollbar {
    display: none;
}

.profile-user-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0 30px;
}

.profile-avatar-ring {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.avatar-ring-svg {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 104px;
    height: 104px;
}

.profile-avatar-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-user-info {
    flex: 1;
}

.profile-user-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.profile-user-handle {
    font-size: 14px;
    color: #A855F7;
    margin-bottom: 4px;
}

.profile-user-joined {
    font-size: 12px;
    color: #666;
}

.profile-menu {
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.profile-menu-item:not(:last-child) {
    border-bottom: 1px solid #1a1a1a;
}

.profile-menu-item:active {
    background: #1a1a1a;
}

.profile-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-menu-item span {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.profile-menu-arrow {
    flex-shrink: 0;
}

.profile-premium-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.profile-premium-card:active {
    opacity: 0.85;
}

.profile-premium-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.profile-premium-info {
    flex: 1;
}

.profile-premium-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.profile-premium-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.profile-pro-badge {
    position: absolute;
    bottom: 0;
    right: -4px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    border: 2px solid #000;
    z-index: 2;
}

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

.profile-premium-status .pro-member-label {
    color: #A855F7;
    font-weight: 600;
    font-size: 14px;
}

.profile-premium-expiry {
    color: #888;
    font-size: 13px;
    margin-top: 2px;
}

.profile-signout-btn {
    width: 100%;
    padding: 16px;
    background: none;
    border: 1px solid #EF4444;
    border-radius: 14px;
    color: #EF4444;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.profile-signout-btn:active {
    background: #EF4444;
    color: white;
}

.edit-profile-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

.edit-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    flex-shrink: 0;
}

.edit-profile-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.edit-profile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 10px 25px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.edit-profile-avatar-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.edit-profile-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.edit-profile-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #A855F7;
}

.edit-profile-camera-btn {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #000;
    transition: transform 0.2s;
}

.edit-profile-camera-btn:active {
    transform: scale(0.9);
}

.edit-profile-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.edit-profile-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.edit-profile-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edit-profile-input {
    width: 100%;
    padding: 16px;
    background: #1a1a2e;
    border: 1px solid #2a2a3e;
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.edit-profile-input:focus {
    border-color: #A855F7;
}
.edit-profile-phone-wrapper {
    display: flex;
    align-items: center;
    background: #1a1a2e;
    border: 1px solid #2a2a3e;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.edit-profile-phone-wrapper:focus-within {
    border-color: #A855F7;
}
.edit-profile-phone-prefix {
    padding: 16px 12px 16px 16px;
    color: #A855F7;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid #2a2a3e;
    white-space: nowrap;
}
.edit-profile-phone-input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding-left: 12px !important;
}

.edit-profile-input::placeholder {
    color: #555;
}

.edit-profile-save-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    margin-top: auto;
}

.edit-profile-save-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.privacy-policy-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

.privacy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    flex-shrink: 0;
}

.privacy-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.privacy-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 25px 40px;
}

.privacy-updated {
    color: #A855F7;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.privacy-section {
    margin-bottom: 28px;
}

.privacy-section h2 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.privacy-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-section li {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A855F7;
}

.privacy-section li strong {
    color: #ddd;
}

.settings-page {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    flex-shrink: 0;
}

.settings-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.settings-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 10px 25px 40px;
}

.settings-menu {
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
}

.settings-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.settings-menu-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.settings-menu-item:active {
    background: rgba(168, 85, 247, 0.1);
}
.settings-voice-toggle {
    cursor: default;
}
.settings-voice-toggle .settings-menu-text {
    flex: 1;
}

.settings-menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(168, 85, 247, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.settings-menu-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.settings-menu-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.settings-menu-sub {
    font-size: 13px;
    color: #888;
}

.settings-version {
    text-align: center;
    color: #555;
    font-size: 12px;
    margin-top: 30px;
}

.settings-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-radio-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: #1a1a2e;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.settings-radio-item.active {
    border-color: #A855F7;
}

.settings-radio-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.settings-radio-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.settings-radio-desc {
    font-size: 13px;
    color: #888;
}

.settings-radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #555;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.settings-radio-item.active .settings-radio-circle {
    border-color: #A855F7;
}

.settings-radio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #A855F7;
    transform: scale(0);
    transition: transform 0.2s;
}

.settings-radio-item.active .settings-radio-dot {
    transform: scale(1);
}

.settings-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-toggle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    background: #1a1a2e;
    border-radius: 14px;
    gap: 16px;
}

.settings-toggle-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.settings-toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.settings-toggle-desc {
    font-size: 13px;
    color: #888;
}

.settings-switch {
    position: relative;
    width: 48px;
    height: 28px;
    flex-shrink: 0;
}

.settings-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.settings-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    border-radius: 28px;
    transition: background-color 0.3s;
}

.settings-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.settings-switch input:checked + .settings-slider {
    background-color: #A855F7;
}

.settings-switch input:checked + .settings-slider::before {
    transform: translateX(20px);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-card {
    background: #1a1a2e;
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(168, 85, 247, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.contact-card p {
    font-size: 12px;
    color: #A855F7;
}

.contact-form-section {
    margin-top: 4px;
}

.contact-form-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.contact-textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.5;
}

/* Workout Player */
.workout-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
    position: relative;
    overflow: hidden;
}

.player-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 8px;
}

.player-header-info {
    text-align: center;
}

.player-header-info h1 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.player-header-info p {
    font-size: 11px;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2px 0 0;
}

.player-progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 20px 0;
    border-radius: 2px;
    overflow: hidden;
}

.player-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #A855F7, #7E22CE);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

.player-progress-text {
    display: flex;
    justify-content: space-between;
    padding: 6px 20px 0;
    font-size: 11px;
    color: #666;
}

.player-exercise-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    min-height: 0;
}

.player-image-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 16px;
    flex-shrink: 0;
    background: #1a1a2e;
    border: 1px solid rgba(168,85,247,0.15);
}

.player-exercise-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-demo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.exercise-demo-frames {
    width: 100%;
    height: 100%;
    position: relative;
}

.demo-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.demo-frame-0 {
    opacity: 1;
    z-index: 2;
}

.demo-frame-1 {
    opacity: 0;
    z-index: 1;
}

.exercise-demo-frames.playing .demo-frame-0 {
    animation: demo-crossfade 2s ease-in-out infinite;
}

.exercise-demo-frames.playing .demo-frame-1 {
    animation: demo-crossfade-alt 2s ease-in-out infinite;
}

@keyframes demo-crossfade {
    0%, 35% { opacity: 1; }
    50%, 85% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes demo-crossfade-alt {
    0%, 35% { opacity: 0; }
    50%, 85% { opacity: 1; }
    100% { opacity: 0; }
}

.exercise-demo-svg {
    width: 80%;
    height: 80%;
}

.player-exercise-desc {
    font-size: 12px;
    color: #888;
    margin: 4px 0 0 0;
    text-align: center;
    line-height: 1.4;
    max-width: 280px;
}

.demo-push-up { animation: none; }
.exercise-demo-svg.playing .demo-push-up { animation: anim-push-up 1.6s ease-in-out infinite; }
@keyframes anim-push-up { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.demo-squat { animation: none; }
.exercise-demo-svg.playing .demo-squat { animation: anim-squat 1.8s ease-in-out infinite; }
@keyframes anim-squat { 0%,100%{transform:translateY(0) scaleY(1)} 50%{transform:translateY(15px) scaleY(0.85)} }

.demo-lunge { animation: none; }
.exercise-demo-svg.playing .demo-lunge { animation: anim-lunge 2s ease-in-out infinite; }
@keyframes anim-lunge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }

.demo-plank { animation: none; }
.exercise-demo-svg.playing .demo-plank { animation: anim-plank 2.5s ease-in-out infinite; }
@keyframes anim-plank { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

.demo-crunch { animation: none; }
.exercise-demo-svg.playing .demo-crunch { animation: anim-crunch 1.6s ease-in-out infinite; }
@keyframes anim-crunch { 0%,100%{transform:rotate(0deg)} 50%{transform:rotate(-12deg) translateX(5px)} }

.demo-leg-raise { animation: none; }
.exercise-demo-svg.playing .demo-leg-raise { animation: anim-leg-raise 1.8s ease-in-out infinite; }
@keyframes anim-leg-raise { 0%,100%{transform:rotate(0)} 50%{transform:rotate(-15deg)} }

.demo-curl { animation: none; }
.exercise-demo-svg.playing .demo-curl { animation: anim-curl 1.4s ease-in-out infinite; }
@keyframes anim-curl { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.demo-press { animation: none; }
.exercise-demo-svg.playing .demo-press { animation: anim-press 1.6s ease-in-out infinite; }
@keyframes anim-press { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.demo-lateral-raise { animation: none; }
.exercise-demo-svg.playing .demo-lateral-raise { animation: anim-lateral-raise 1.8s ease-in-out infinite; }
@keyframes anim-lateral-raise { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(1.1)} }

.demo-pull-up { animation: none; }
.exercise-demo-svg.playing .demo-pull-up { animation: anim-pull-up 1.8s ease-in-out infinite; }
@keyframes anim-pull-up { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.demo-row { animation: none; }
.exercise-demo-svg.playing .demo-row { animation: anim-row 1.6s ease-in-out infinite; }
@keyframes anim-row { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-6px)} }

.demo-jumping-jack { animation: none; }
.exercise-demo-svg.playing .demo-jumping-jack { animation: anim-jumping-jack 1s ease-in-out infinite; }
@keyframes anim-jumping-jack { 0%,100%{transform:scaleX(1) scaleY(1)} 50%{transform:scaleX(0.85) scaleY(1.05)} }

.demo-high-knees { animation: none; }
.exercise-demo-svg.playing .demo-high-knees { animation: anim-high-knees 0.6s ease-in-out infinite; }
@keyframes anim-high-knees { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.demo-burpee { animation: none; }
.exercise-demo-svg.playing .demo-burpee { animation: anim-burpee 2s ease-in-out infinite; }
@keyframes anim-burpee { 0%,25%{transform:translateY(0) scaleY(1)} 50%{transform:translateY(20px) scaleY(0.6)} 75%,100%{transform:translateY(-8px) scaleY(1)} }

.demo-box-jump { animation: none; }
.exercise-demo-svg.playing .demo-box-jump { animation: anim-box-jump 1.4s ease-in-out infinite; }
@keyframes anim-box-jump { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-20px)} 60%{transform:translateY(-20px)} }

.demo-bridge { animation: none; }
.exercise-demo-svg.playing .demo-bridge { animation: anim-bridge 2s ease-in-out infinite; }
@keyframes anim-bridge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.demo-calf-raise { animation: none; }
.exercise-demo-svg.playing .demo-calf-raise { animation: anim-calf-raise 1.2s ease-in-out infinite; }
@keyframes anim-calf-raise { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.demo-twist { animation: none; }
.exercise-demo-svg.playing .demo-twist { animation: anim-twist 1.6s ease-in-out infinite; }
@keyframes anim-twist { 0%,100%{transform:rotate(0)} 25%{transform:rotate(8deg)} 75%{transform:rotate(-8deg)} }

.demo-dip { animation: none; }
.exercise-demo-svg.playing .demo-dip { animation: anim-dip 1.6s ease-in-out infinite; }
@keyframes anim-dip { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

.demo-superman { animation: none; }
.exercise-demo-svg.playing .demo-superman { animation: anim-superman 2s ease-in-out infinite; }
@keyframes anim-superman { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.demo-wall-sit { animation: none; }
.exercise-demo-svg.playing .demo-wall-sit { animation: anim-wall-sit 3s ease-in-out infinite; }
@keyframes anim-wall-sit { 0%,100%{opacity:1} 50%{opacity:0.7} }

.demo-dead-bug { animation: none; }
.exercise-demo-svg.playing .demo-dead-bug { animation: anim-dead-bug 2s ease-in-out infinite; }
@keyframes anim-dead-bug { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(-1)} }

.demo-rollout { animation: none; }
.exercise-demo-svg.playing .demo-rollout { animation: anim-rollout 2s ease-in-out infinite; }
@keyframes anim-rollout { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(1.15)} }

.demo-deadlift { animation: none; }
.exercise-demo-svg.playing .demo-deadlift { animation: anim-deadlift 2s ease-in-out infinite; }
@keyframes anim-deadlift { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(10px) rotate(5deg)} }

.demo-face-pull { animation: none; }
.exercise-demo-svg.playing .demo-face-pull { animation: anim-face-pull 1.6s ease-in-out infinite; }
@keyframes anim-face-pull { 0%,100%{transform:translateX(0)} 50%{transform:translateX(-8px)} }

.demo-donkey-kick { animation: none; }
.exercise-demo-svg.playing .demo-donkey-kick { animation: anim-donkey-kick 1.4s ease-in-out infinite; }
@keyframes anim-donkey-kick { 0%,100%{transform:rotate(0)} 50%{transform:rotate(-8deg)} }

.demo-lateral-walk { animation: none; }
.exercise-demo-svg.playing .demo-lateral-walk { animation: anim-lateral-walk 1.6s ease-in-out infinite; }
@keyframes anim-lateral-walk { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }

.demo-upright-row { animation: none; }
.exercise-demo-svg.playing .demo-upright-row { animation: anim-upright-row 1.6s ease-in-out infinite; }
@keyframes anim-upright-row { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.demo-handstand { animation: none; }
.exercise-demo-svg.playing .demo-handstand { animation: anim-handstand 2.5s ease-in-out infinite; }
@keyframes anim-handstand { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

.demo-v-sit { animation: none; }
.exercise-demo-svg.playing .demo-v-sit { animation: anim-v-sit 2s ease-in-out infinite; }
@keyframes anim-v-sit { 0%,100%{transform:rotate(0)} 50%{transform:rotate(-10deg)} }

.demo-fly { animation: none; }
.exercise-demo-svg.playing .demo-fly { animation: anim-fly 1.8s ease-in-out infinite; }
@keyframes anim-fly { 0%,100%{transform:scaleX(1)} 50%{transform:scaleX(0.85)} }

.demo-slam { animation: none; }
.exercise-demo-svg.playing .demo-slam { animation: anim-slam 1s ease-in-out infinite; }
@keyframes anim-slam { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.demo-stretch-forward { animation: none; }
.exercise-demo-svg.playing .demo-stretch-forward { animation: anim-stretch-forward 3s ease-in-out infinite; }
@keyframes anim-stretch-forward { 0%,100%{transform:rotate(0)} 50%{transform:rotate(-5deg) translateY(4px)} }

.demo-stretch-stand { animation: none; }
.exercise-demo-svg.playing .demo-stretch-stand { animation: anim-stretch-stand 3s ease-in-out infinite; }
@keyframes anim-stretch-stand { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

.demo-breathing { animation: none; }
.exercise-demo-svg.playing .demo-breathing { animation: anim-breathing 4s ease-in-out infinite; }
@keyframes anim-breathing { 0%,100%{transform:scale(0.8)} 50%{transform:scale(1.2)} }

.demo-arm-circle { animation: none; }
.exercise-demo-svg.playing .demo-arm-circle { animation: anim-arm-circle 2s linear infinite; }
@keyframes anim-arm-circle { 0%{transform:rotate(0)} 100%{transform:rotate(5deg)} }

.demo-cat-cow { animation: none; }
.exercise-demo-svg.playing .demo-cat-cow { animation: anim-cat-cow 2.5s ease-in-out infinite; }
@keyframes anim-cat-cow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.demo-vertical-bounce { animation: none; }
.exercise-demo-svg.playing .demo-vertical-bounce { animation: anim-vertical-bounce 1.4s ease-in-out infinite; }
@keyframes anim-vertical-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.player-phase-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-phase-badge.warmup {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.player-phase-badge.exercise {
    background: rgba(168, 85, 247, 0.2);
    color: #A855F7;
}

.player-phase-badge.cooldown {
    background: rgba(56, 189, 248, 0.2);
    color: #38BDF8;
}

.player-exercise-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
    text-align: center;
}

.player-exercise-detail {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.player-timer-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    flex-shrink: 0;
}

.timer-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 6;
}

.timer-fg {
    fill: none;
    stroke: #A855F7;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.3s linear;
}

.timer-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 8px 20px;
    flex-shrink: 0;
}

.player-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.player-ctrl-btn:active {
    background: rgba(255, 255, 255, 0.15);
}

.player-play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.player-play-btn:active {
    transform: scale(0.95);
}

.player-finish-btn {
    margin: 8px 20px 24px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: transparent;
    color: #999;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
}

.player-finish-btn:active {
    background: rgba(255, 255, 255, 0.05);
}

.player-rest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.rest-content {
    text-align: center;
}

.rest-label {
    font-size: 14px;
    color: #A855F7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 8px;
}

.rest-timer {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 24px;
}

.rest-next-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}

.rest-next-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px;
}

.rest-skip-btn {
    padding: 12px 32px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.rest-skip-btn:active {
    background: rgba(168, 85, 247, 0.2);
}

.workout-complete-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.complete-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.complete-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.complete-subtitle {
    font-size: 14px;
    color: #999;
    margin: 0 0 32px;
}

.complete-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.complete-stat {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    min-width: 90px;
}

.complete-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #A855F7;
    display: block;
}

.complete-stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

.complete-done-btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.complete-done-btn:active {
    transform: scale(0.98);
}

.form-check-btn {
    background: rgba(168, 85, 247, 0.2);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.form-check-btn:active {
    background: rgba(168, 85, 247, 0.4);
}
.form-check-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 60;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    overflow: hidden;
}
.form-check-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.form-check-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.form-check-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.form-check-camera {
    flex: 1;
    position: relative;
    margin: 0 16px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    min-height: 300px;
}
.form-check-camera video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}
.form-check-guide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.form-check-guide-border {
    width: 60%;
    height: 80%;
    border: 2px dashed rgba(168, 85, 247, 0.5);
    border-radius: 16px;
}
.form-check-feedback {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-check-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
}
.form-check-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-top-color: #A855F7;
    border-radius: 50%;
    animation: formCheckSpin 0.8s linear infinite;
}
@keyframes formCheckSpin {
    to { transform: rotate(360deg); }
}
.form-check-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: formCheckFadeIn 0.3s ease;
}
@keyframes formCheckFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}
.form-check-msg.good {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}
.form-check-msg.warn {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
}
.form-check-msg.info {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}
.form-check-msg-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast-notification {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    max-width: 340px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Center on larger screens */
@media (min-width: 376px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #111;
    }
}

.streak-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 14px 18px;
    margin: 0 20px 16px;
    gap: 14px;
}
.streak-badge-progress {
    margin: 16px 0;
}
.streak-fire {
    font-size: 32px;
    line-height: 1;
}
.streak-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.streak-count {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.streak-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.streak-best {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 10px;
    padding: 8px 14px;
}
.streak-best-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
}
.streak-best-value {
    font-size: 20px;
    font-weight: 700;
    color: #A855F7;
    line-height: 1.2;
}

.messages-page {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    background: #000;
}
.messages-header {
    padding: 50px 20px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.messages-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.trainer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trainer-badge img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #A855F7;
    object-fit: cover;
}
.trainer-badge-info {
    display: flex;
    flex-direction: column;
}
.trainer-badge-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.trainer-badge-status {
    font-size: 10px;
    color: #888;
}
.messages-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.messages-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.messages-empty p {
    font-size: 14px;
    color: #555;
}
.msg-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
    position: relative;
}
.msg-bubble.client {
    align-self: flex-end;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.msg-bubble.trainer {
    align-self: flex-start;
    background: #1a1a2e;
    color: #fff;
    border-bottom-left-radius: 4px;
}
.msg-time {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    display: block;
}
.msg-bubble.trainer .msg-time {
    color: #555;
}
.msg-media {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 4px;
    display: block;
}
.msg-media-video {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 4px;
    max-height: 200px;
}
.msg-date-divider {
    text-align: center;
    font-size: 11px;
    color: #555;
    margin: 12px 0 6px;
}
.messages-input-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #111;
    border-top: 1px solid #222;
    margin-bottom: 70px;
}
#msg-text-input {
    flex: 1;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    outline: none;
}
#msg-text-input:focus {
    border-color: #A855F7;
}
#msg-text-input::placeholder {
    color: #555;
}
.msg-attach-btn, .msg-send-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg-send-btn {
    color: #A855F7;
}
.msg-attach-btn:active, .msg-send-btn:active {
    opacity: 0.6;
}
.msg-uploading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #1a1a2e;
    border-radius: 12px;
    align-self: flex-end;
    max-width: 80%;
}
.msg-uploading .ai-spinner {
    width: 16px;
    height: 16px;
}
.msg-uploading span {
    font-size: 12px;
    color: #888;
}

.messages-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pp-section { padding: 20px 0; }
.pp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.pp-title { color: #fff; font-size: 16px; font-weight: 700; }
.pp-add-btn { background: linear-gradient(135deg, #A855F7, #7E22CE); border: none; color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; }
.pp-upload-form { background: #1a1a2e; border-radius: 16px; padding: 16px; margin-bottom: 16px; }
.pp-pose-selector { display: flex; gap: 8px; margin-bottom: 12px; }
.pp-pose-btn { flex: 1; background: #111; border: 1px solid #333; color: #888; padding: 8px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pp-pose-btn.active { background: rgba(168,85,247,0.2); border-color: #A855F7; color: #A855F7; }
.pp-preview-area { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: #111; border: 2px dashed #333; border-radius: 12px; min-height: 160px; cursor: pointer; margin-bottom: 12px; overflow: hidden; position: relative; }
.pp-preview-area span { color: #555; font-size: 13px; }
.pp-preview-area img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }
.pp-preview-area.has-photo { border-style: solid; border-color: #A855F7; }
.pp-preview-area.has-photo svg, .pp-preview-area.has-photo span { display: none; }
.pp-notes-input, .pp-date-input { width: 100%; background: #111; border: 1px solid #333; color: #fff; padding: 10px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 10px; box-sizing: border-box; }
.pp-date-input::-webkit-calendar-picker-indicator { filter: invert(1); }
.pp-submit-btn { width: 100%; background: linear-gradient(135deg, #A855F7, #7E22CE); border: none; color: #fff; padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; margin-bottom: 8px; }
.pp-submit-btn:disabled { opacity: 0.5; }
.pp-cancel-btn { width: 100%; background: transparent; border: 1px solid #333; color: #888; padding: 10px; border-radius: 12px; font-size: 13px; cursor: pointer; }
.pp-actions-row { display: flex; gap: 8px; margin-bottom: 16px; }
.pp-compare-btn { background: #1a1a2e; border: 1px solid #333; color: #fff; padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; }
.pp-compare-btn.active { background: rgba(168,85,247,0.2); border-color: #A855F7; color: #A855F7; }
.pp-compare-bar { display: flex; justify-content: space-between; align-items: center; background: rgba(168,85,247,0.15); border: 1px solid #A855F7; border-radius: 12px; padding: 10px 16px; margin-bottom: 12px; }
.pp-compare-label { color: #A855F7; font-size: 13px; font-weight: 600; }
.pp-compare-cancel { background: transparent; border: none; color: #888; font-size: 13px; cursor: pointer; }
.pp-timeline { display: flex; flex-direction: column; gap: 16px; }
.pp-timeline-group { }
.pp-timeline-date { color: #888; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; padding-left: 4px; }
.pp-timeline-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pp-card { background: #1a1a2e; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; transition: all 0.2s; }
.pp-card.selected { outline: 2px solid #A855F7; outline-offset: 2px; }
.pp-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
.pp-card-info { padding: 8px; }
.pp-card-pose { color: #A855F7; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.pp-card-notes { color: #888; font-size: 11px; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pp-card-feedback { background: rgba(168,85,247,0.1); border-radius: 8px; padding: 6px 8px; margin-top: 6px; }
.pp-card-feedback-label { color: #A855F7; font-size: 10px; font-weight: 700; }
.pp-card-feedback-text { color: #ccc; font-size: 11px; margin-top: 2px; }
.pp-card-delete { position: absolute; top: 6px; right: 6px; background: rgba(0,0,0,0.7); border: none; color: #EF4444; width: 24px; height: 24px; border-radius: 50%; font-size: 14px; cursor: pointer; display: none; align-items: center; justify-content: center; }
.pp-card:hover .pp-card-delete { display: flex; }
.pp-compare-view { background: #111; border-radius: 16px; padding: 16px; margin-top: 16px; }
.pp-compare-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pp-compare-header h4 { color: #fff; font-size: 14px; font-weight: 700; margin: 0; }
.pp-compare-close { background: transparent; border: none; color: #888; font-size: 22px; cursor: pointer; }
.pp-compare-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-compare-photo { background: #1a1a2e; border-radius: 12px; overflow: hidden; text-align: center; }
.pp-compare-photo img { width: 100%; height: 200px; object-fit: cover; display: block; }
.pp-compare-photo-info { padding: 8px; }
.pp-compare-photo-date { color: #A855F7; font-size: 11px; font-weight: 600; }
.pp-compare-photo-pose { color: #888; font-size: 11px; }
.pp-empty-state { text-align: center; padding: 40px 20px; color: #555; font-size: 13px; }

.goal-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 10000; display: flex; align-items: flex-end; justify-content: center; }
.goal-modal-card { background: #1a1a2e; border-radius: 24px 24px 0 0; width: 100%; max-width: 375px; padding: 24px 20px 36px; animation: goalSlideUp 0.3s ease-out; }
@keyframes goalSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.goal-modal-header { text-align: center; margin-bottom: 20px; position: relative; }
.goal-modal-header h2 { color: #fff; font-size: 20px; font-weight: 700; margin: 0 0 4px; }
.goal-modal-header p { color: #888; font-size: 13px; margin: 0; }
.goal-modal-close { position: absolute; top: 0; right: 0; background: #222; border: none; color: #888; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.goal-modal-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.goal-modal-option { display: flex; align-items: center; gap: 10px; background: #111; border: 1.5px solid #333; border-radius: 14px; padding: 14px; cursor: pointer; transition: all 0.2s; }
.goal-modal-option:hover, .goal-modal-option.selected { background: rgba(168,85,247,0.15); border-color: #A855F7; }
.goal-modal-option.selected { box-shadow: 0 0 12px rgba(168,85,247,0.3); }
.goal-icon { font-size: 24px; line-height: 1; }
.goal-label { color: #fff; font-size: 13px; font-weight: 600; }

.bm-section { padding: 20px 0; }
.bm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.bm-title { color: #fff; font-size: 16px; font-weight: 700; }
.bm-add-btn { background: linear-gradient(135deg, #A855F7, #7E22CE); border: none; color: #fff; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; cursor: pointer; }
.bm-form { background: #1a1a2e; border-radius: 16px; padding: 16px; margin-bottom: 16px; }
.bm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.bm-field { display: flex; flex-direction: column; gap: 4px; }
.bm-field label { color: #888; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.bm-field input { background: #111; border: 1px solid #333; color: #fff; padding: 10px; border-radius: 10px; font-size: 14px; width: 100%; box-sizing: border-box; }
.bm-date-input { width: 100%; background: #111; border: 1px solid #333; color: #fff; padding: 10px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 10px; box-sizing: border-box; }
.bm-date-input::-webkit-calendar-picker-indicator { filter: invert(1); }
.bm-submit-btn { width: 100%; background: linear-gradient(135deg, #A855F7, #7E22CE); border: none; color: #fff; padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; margin-bottom: 8px; }
.bm-submit-btn:disabled { opacity: 0.5; }
.bm-cancel-btn { width: 100%; background: transparent; border: 1px solid #333; color: #888; padding: 10px; border-radius: 12px; font-size: 13px; cursor: pointer; }
.bm-chart-tabs { display: flex; gap: 6px; margin-bottom: 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.bm-chart-tabs::-webkit-scrollbar { display: none; }
.bm-chart-tab { background: #1a1a2e; border: 1px solid #333; color: #888; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; flex-shrink: 0; }
.bm-chart-tab.active { background: rgba(168,85,247,0.2); border-color: #A855F7; color: #A855F7; }
.bm-chart-container { background: #1a1a2e; border-radius: 16px; padding: 16px; margin-bottom: 16px; position: relative; }
.bm-chart-container canvas { width: 100% !important; height: 180px !important; }
.bm-chart-empty { text-align: center; color: #555; font-size: 13px; padding: 40px 0; }
.bm-history { display: flex; flex-direction: column; gap: 8px; }
.bm-history-title { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.bm-entry { background: #1a1a2e; border-radius: 12px; padding: 12px 14px; position: relative; }
.bm-entry-date { color: #A855F7; font-size: 12px; font-weight: 600; margin-bottom: 6px; }
.bm-entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.bm-entry-item { display: flex; flex-direction: column; }
.bm-entry-label { color: #666; font-size: 10px; text-transform: uppercase; }
.bm-entry-value { color: #fff; font-size: 13px; font-weight: 600; }
.bm-entry-delete { position: absolute; top: 10px; right: 10px; background: rgba(239,68,68,0.15); border: none; color: #EF4444; width: 22px; height: 22px; border-radius: 50%; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

.notif-action-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.checkin-header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.checkin-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #000;
}
.checkin-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #1a1a1a;
}
.checkin-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}
.checkin-date {
    font-size: 12px;
    color: #777;
}
.checkin-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.checkin-card {
    background: #111;
    border-radius: 16px;
    padding: 16px;
}
.checkin-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.checkin-optional {
    color: #555;
    font-weight: 400;
}
.checkin-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkin-input {
    flex: 1;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 16px;
    outline: none;
    -moz-appearance: textfield;
}
.checkin-input::-webkit-outer-spin-button,
.checkin-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.checkin-input:focus {
    border-color: #A855F7;
}
.checkin-unit {
    font-size: 14px;
    color: #777;
    min-width: 30px;
}
.checkin-slider-container {
    padding: 0 4px;
}
.checkin-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #7E22CE, #A855F7);
    outline: none;
}
.checkin-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #A855F7;
    border: 3px solid #fff;
    cursor: pointer;
}
.checkin-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: #555;
}
.checkin-slider-value {
    color: #A855F7;
    font-weight: 700;
    font-size: 16px;
}
.checkin-toggle-row {
    display: flex;
    gap: 10px;
}
.checkin-toggle-btn {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #777;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.checkin-toggle-btn.active {
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border-color: #A855F7;
    color: #fff;
}
.checkin-textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: none;
    outline: none;
    box-sizing: border-box;
}
.checkin-textarea:focus {
    border-color: #A855F7;
}
.checkin-photo-area,
.checkin-video-area {
    background: #1a1a1a;
    border: 2px dashed #333;
    border-radius: 12px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.checkin-photo-placeholder,
.checkin-video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 13px;
}
.checkin-photo-preview {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.checkin-video-preview {
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
}
.checkin-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
}
.checkin-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.checkin-summary-bubble {
    background: #1a1a1a;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 12px;
    margin-top: 4px;
}
.checkin-summary-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #A855F7;
    margin-bottom: 10px;
}
.checkin-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.checkin-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cs-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cs-value {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}
.checkin-summary-notes {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #222;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.pay-premium-page {
    background: #000;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.pay-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.pay-premium-header h2 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}
.pay-premium-content {
    padding: 0 20px 30px;
    flex: 1;
    overflow-y: auto;
}
.pay-premium-hero {
    text-align: center;
    margin-bottom: 20px;
}
.pay-premium-icon {
    width: 64px;
    height: 64px;
    background: rgba(168,85,247,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.pay-premium-hero h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}
.pay-premium-desc {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}
.pay-premium-trial-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 24px;
}
.pay-premium-trial-badge span:first-of-type {
    color: #22C55E;
    font-size: 14px;
    font-weight: 700;
}
.pay-trial-sub {
    color: #888 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-left: auto;
}
.pay-premium-card-section {
    background: #111;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}
.pay-premium-card-section h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 16px;
}
.pay-card-field {
    margin-bottom: 14px;
}
.pay-card-field label {
    display: block;
    color: #888;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.stripe-element-wrap {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 14px;
    transition: border-color 0.2s;
}
.stripe-element-wrap.StripeElement--focus {
    border-color: #A855F7;
}
.stripe-element-wrap.StripeElement--invalid {
    border-color: #EF4444;
}
.pay-card-row {
    display: flex;
    gap: 12px;
}
.pay-card-field.half {
    flex: 1;
}
.pay-card-error {
    color: #EF4444;
    font-size: 12px;
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(239,68,68,0.08);
    border-radius: 8px;
}
.pay-premium-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #A855F7, #7E22CE);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    transition: opacity 0.2s;
}
.pay-premium-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pay-premium-terms {
    text-align: center;
    color: #666;
    font-size: 11px;
    line-height: 1.4;
    margin: 0 0 16px;
}
.pay-premium-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pay-premium-secure span {
    color: #555;
    font-size: 11px;
}

.trainer-profile-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #000;
}
.trainer-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}
.trainer-profile-page-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.trainer-profile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 40px;
    -webkit-overflow-scrolling: touch;
}
.trainer-profile-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 24px;
}
.trainer-profile-photo-wrapper {
    position: relative;
    margin-bottom: 16px;
}
.trainer-profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #A855F7;
    object-fit: cover;
}
.trainer-profile-verified {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 26px;
    height: 26px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}
.trainer-profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.trainer-profile-title {
    font-size: 14px;
    color: #A855F7;
    font-weight: 500;
    margin-bottom: 12px;
}
.trainer-profile-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.trainer-profile-dot {
    color: rgba(255,255,255,0.3);
}
.trainer-profile-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.trainer-profile-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.trainer-profile-btn-outline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    background: transparent;
    color: #A855F7;
    border: 1.5px solid #A855F7;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
.trainer-profile-section {
    margin-bottom: 28px;
}
.trainer-profile-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}
.trainer-profile-bio {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
}
.trainer-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.trainer-profile-tag {
    padding: 8px 16px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 20px;
    color: #A855F7;
    font-size: 13px;
    font-weight: 500;
}
.trainer-profile-exp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.trainer-profile-exp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 16px;
}
.trainer-profile-exp-icon {
    width: 42px;
    height: 42px;
    background: rgba(168,85,247,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trainer-profile-exp-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}
.trainer-profile-exp-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.trainer-profile-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trainer-profile-price-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 18px;
}
.trainer-profile-price-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.trainer-profile-price-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.trainer-profile-price-badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, #A855F7 0%, #7E22CE 100%);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}
.trainer-profile-price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.trainer-profile-price-dollar {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}
.trainer-profile-price-period {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.trainer-profile-price-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.trainer-profile-schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.trainer-profile-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
}
.trainer-profile-day {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.trainer-profile-hours {
    font-size: 14px;
    color: #A855F7;
    font-weight: 500;
}
.trainer-profile-hours.closed {
    color: rgba(255,255,255,0.3);
}
.trainer-profile-socials {
    display: flex;
    gap: 12px;
}
.trainer-profile-social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    text-decoration: none;
}
.trainer-profile-social-btn:hover {
    background: rgba(168,85,247,0.15);
    border-color: #A855F7;
    color: #A855F7;
}
