/* Design System and Variables */
:root {
    --primary-color: #1877F2;
    --primary-hover: #1565c0;
    --primary-light: #e7f3ff;
    --success-color: #22C55E;
    --success-hover: #1aa84f;
    --success-light: #e8fbf0;
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --text-color: #1c1e21;
    --text-muted: #65676b;
    --border-color: #dddfe2;
    --input-focus: #e7f3ff;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    -webkit-font-smoothing: antialiased;
}

/* App Container (Phone-styled Frame on Desktop, Clean on Mobile) */
.app-container {
    width: 100%;
    max-width: 460px;
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 680px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

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

.icon-facebook {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #050505;
    letter-spacing: -0.5px;
}

.logo-text .accent-text {
    color: var(--primary-color);
}

.badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.2);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: #e4e6eb;
    position: relative;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 0 4px 4px 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 5px rgba(24, 119, 242, 0.3);
}

/* Main Card Content */
.main-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

/* Step Sections */
.step-section {
    display: none;
    flex-direction: column;
    flex: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-section.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

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

.card-header {
    margin-bottom: 28px;
}

.card-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    color: #050505;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: var(--primary-color);
}

.text-muted {
    font-weight: 700;
    color: #050505;
}

.subtitle {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0 10px;
}

/* Forms */
.app-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #8a8d91;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    background-color: #f8f9fa;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-group input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(24, 119, 242, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    text-decoration: none;
    width: 100%;
}

.btn:disabled {
    background-color: #e4e6eb !important;
    color: #8a8d91 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.65;
}

.btn-primary {
    background-color: var(--success-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
    background-color: var(--success-hover);
    transform: translateY(-1px);
}

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

.btn-success {
    background-color: var(--success-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
}

.btn-success:hover {
    background-color: var(--success-hover);
    transform: translateY(-1px);
}

.btn-success:active {
    transform: translateY(1px);
}

.btn-lg {
    padding: 16px 24px;
    font-size: 1.1rem;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Quiz Styling */
.question-counter {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.question-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #050505;
    line-height: 1.3;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    width: 100%;
    padding: 16px 20px;
    background-color: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition-normal);
    outline: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.option-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.08);
}

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

.option-emoji {
    font-size: 1.5rem;
    line-height: 1;
}

/* Toast Overlay & Animation */
.toast-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(4px);
    transition: opacity 0.25s ease;
}

.toast-overlay.hidden {
    display: none;
    opacity: 0;
}

.toast-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: popBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    max-width: 85%;
}

.toast-emoji {
    font-size: 3.5rem;
    margin-bottom: 12px;
}

.toast-message {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--success-color);
}

@keyframes popBounce {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Processing View */
.processing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 10px;
}

.loader-container {
    margin-bottom: 24px;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 70px;
    height: 70px;
}

.spinner .path {
    stroke: var(--primary-color);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

.processing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 24px;
    min-height: 60px;
}

.progress-bar-loading {
    width: 100%;
    height: 10px;
    background-color: #e4e6eb;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Result Section */
.celebration-emoji {
    font-size: 4rem;
    margin-bottom: 8px;
    animation: pulseCelebration 2s infinite ease-in-out;
}

@keyframes pulseCelebration {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.result-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-color);
    margin-bottom: 4px;
}

.result-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success-color);
    margin-bottom: 24px;
}

.result-card {
    border-radius: var(--radius-md);
    padding: 20px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #1ea84f 100%);
}

.final-score-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    opacity: 0.95;
}

.icon-trophy {
    width: 20px;
    height: 20px;
}

.final-score-value {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Details Card */
.details-card {
    background-color: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 20px;
}

.details-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details-row {
    font-size: 0.95rem;
    color: #4b4f56;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e4e6eb;
    padding-bottom: 8px;
}

.details-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.details-row strong {
    color: var(--text-color);
}

/* Redirect Card */
.redirect-info-card {
    background-color: #f0f7ff;
    border: 1.5px solid #d0e7ff;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.redirect-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.redirect-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.redirect-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 90%;
}

/* Animations & Responsive */
@media (max-width: 480px) {
    body {
        padding: 0;
        background-color: var(--card-bg);
    }
    
    .app-container {
        border-radius: 0;
        box-shadow: none;
        min-height: 100vh;
        border: none;
    }
}

/* ChatMoney style reacts */
.money-pop-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.money-pop-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--success-color);
    text-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    animation: money-pop 1.4s ease-out forwards;
}

.flying-bill {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0;
}

.flying-bill.bill-1 { animation: bill-fly-1 1.4s ease-out forwards; }
.flying-bill.bill-2 { animation: bill-fly-2 1.4s ease-out forwards; }
.flying-bill.bill-3 { animation: bill-fly-3 1.4s ease-out forwards; }
.flying-bill.bill-4 { animation: bill-fly-4 1.4s ease-out forwards; }

@keyframes money-pop {
    0%   { transform: scale(0.3) translateY(20px); opacity: 0; }
    30%  { transform: scale(1.25) translateY(0);   opacity: 1; }
    60%  { transform: scale(1)   translateY(-10px); opacity: 1; }
    100% { transform: scale(1)   translateY(-80px); opacity: 0; }
}

@keyframes bill-fly-1 {
    0%   { transform: translate(0,0) rotate(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translate(-140px,-180px) rotate(-45deg); opacity: 0; }
}
@keyframes bill-fly-2 {
    0%   { transform: translate(0,0) rotate(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translate(150px,-160px) rotate(40deg); opacity: 0; }
}
@keyframes bill-fly-3 {
    0%   { transform: translate(0,0) rotate(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translate(-110px,160px) rotate(30deg); opacity: 0; }
}
@keyframes bill-fly-4 {
    0%   { transform: translate(0,0) rotate(0); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: translate(130px,170px) rotate(-35deg); opacity: 0; }
}

/* Sacar Header & Back Button */
.sacar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--border-color);
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    transition: background-color var(--transition-fast);
}

.btn-back:hover {
    background-color: #e4e6eb;
}

.btn-back svg {
    width: 20px;
    height: 20px;
}

.sacar-header-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
}

.sacar-title {
    font-size: 1.85rem;
    font-weight: 800;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-top: 12px;
    margin-bottom: 6px;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.method-btn:hover {
    border-color: var(--text-color);
}

.method-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.08);
}

.method-logo {
    max-height: 38px;
    max-width: 100%;
    object-fit: contain;
}

/* Failed Saque Section */
.failed-icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.failed-circle-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: #fef2f2;
    color: #ef4444;
}

.icon-warning {
    width: 42px;
    height: 42px;
}

.failed-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ef4444;
    margin-top: 14px;
    letter-spacing: -0.5px;
}

.failed-alert-card {
    background-color: #fef2f2;
    border: 1.5px solid #fecaca;
    border-radius: var(--radius-md);
    padding: 18px;
    margin-bottom: 24px;
    text-align: left;
}

.failed-card-header {
    font-size: 1.05rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 6px;
}

.failed-card-body {
    font-size: 0.95rem;
    color: #991b1b;
    line-height: 1.45;
}

.btn-text-only {
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 18px;
    transition: color var(--transition-fast);
}

.btn-text-only:hover {
    color: var(--text-color);
}

/* VTurb Player */
.vturb-player-wrapper {
    background-color: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.unlock-action-container {
    margin-top: 10px;
    margin-bottom: 24px;
}

/* Comments Section */
/* Header logo image custom */
.header-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Geolocation Audience Banner */
.watch-wrap { text-align: center; margin: 15px auto; }
.watch-top {
  display: inline-block;
  background-color: rgba(0,0,0,0.75);
  padding: 10px 22px;
  border-radius: 10px;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.watch-top .eye { font-size: 18px; margin-right: 5px; }
.watch-top .count,
.watch-top .city { color: #ff3333; font-weight: bold; }
.watch-top .label { margin-left: 4px; }

/* Comments Section - Facebook styled */
.comments-section {
    border-top: 1.5px solid var(--border-color);
    padding-top: 24px;
    margin-top: 10px;
    text-align: left;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.comments-header h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-color);
}

.comments-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.comentarios { margin-top:24px }
.comentario{
  display:flex; align-items:flex-start; gap:12px; margin-bottom:18px
}
.comentario .foto{
  width:50px; height:50px; border-radius:4px; overflow:hidden; flex-shrink:0;
  background:#ccc; display:flex; align-items:center; justify-content:center
}
.comentario .foto img{ width:100%; height:100%; object-fit:cover }
.comentario .conteudo{
  background:#f4f4f4; padding:10px 12px; border-radius:6px; width:100%; text-align: left;
  box-sizing: border-box;
}
.comentario .nome{ font-weight:700; color:#0a55c3; margin-bottom:4px; font-size: 0.92rem; }
.comentario .conteudo div:nth-child(2) {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-color);
}
.comentario .acoes{
  display:flex; gap:8px; margin-top:6px; font-size:12px; color:#555; align-items:center
}
.comentario .btn-like{
  border:none; background:none; color:#0a55c3; cursor:pointer; padding:0; font-weight:600; font-size:12px;
}
.comentario .btn-like[aria-pressed="true"]{ color:#cf2e2e }
.comentario .sep { color: #8d949e; }
.comentario .likes-count { font-weight: 600; color: #555; }
.comentario .time, .comentario .responder { color: #8d949e; }

/* Members Area Banner & Info Card */
.membros-status-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}

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

.membros-wallet-icon {
    font-size: 1.85rem;
}

.membros-banner-small {
    font-size: 0.68rem;
    font-weight: 800;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.membros-banner-large {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
}

.membros-banner-right {
    text-align: right;
}

.membros-banner-method {
    font-size: 0.9rem;
    font-weight: 700;
}

.membros-info-card {
    background-color: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

.membros-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.membros-info-header h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-color);
}

.icon-check {
    width: 18px;
    height: 18px;
    color: var(--success-color);
    flex-shrink: 0;
}

.membros-info-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Members Area Course Playlist Grid */
.membros-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membros-video-container {
    display: flex;
    flex-direction: column;
}

.youtube-player-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.youtube-player-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-guard-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background-color: #000;
    pointer-events: none;
    z-index: 10;
}

.youtube-guard-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: #000;
    pointer-events: none;
    z-index: 10;
}

.youtube-guard-logo {
    position: absolute;
    top: 8px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    z-index: 20;
    pointer-events: none;
}

.youtube-guard-logo svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.youtube-guard-logo span {
    font-size: 0.78rem;
    font-weight: 750;
}

.membros-video-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 12px;
    text-align: left;
}

/* Sidebar Playlist Cards */
.membros-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.playlist-module-card {
    background-color: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

.playlist-module-header {
    background-color: #1c1e21;
    padding: 10px 16px;
    text-align: left;
}

.playlist-module-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.playlist-lessons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.playlist-lesson-btn {
    width: 100%;
    padding: 12px 16px;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid #f0f2f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b4f56;
    transition: all var(--transition-fast);
    outline: none;
}

.playlist-lesson-btn:last-child {
    border-bottom: none;
}

.playlist-lesson-btn:hover {
    background-color: #f8f9fa;
}

.playlist-lesson-btn.active {
    background-color: #e7f3ff;
    color: var(--primary-color);
}

.playlist-lesson-icon {
    width: 18px;
    height: 18px;
    color: #8a8d91;
    flex-shrink: 0;
}

.playlist-lesson-btn.active .playlist-lesson-icon {
    color: var(--primary-color);
}

/* Custom Labels */
.input-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
    text-align: left;
}

.watch-wrap.hidden {
    display: none !important;
}

.header-logo {
    cursor: pointer;
}

