/* ========================================
   CLEANED PUBLIC CSS (STRUCTURED)
======================================== */

:root {
    --primary: #5B3E8E;
    --primary-dark: #452f6b;
    --secondary: #FFBE04;
    --soft-bg: #f7f5fc;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border-soft: rgba(91, 62, 142, 0.12);
    --shadow-soft: 0 20px 60px rgba(91, 62, 142, 0.12);
    --white: #ffffff;
    --success: #198754;
    --success-soft: rgba(25, 135, 84, 0.12);
    --purple-soft: #E8DBFF;
    --purple-soft-2: #F1E9FF;
    --bg-light: #fcfbff;
    --bg-lighter: #faf8ff;
    --gray-100: #f3f4f6;
    --gray-200: #efeaf8;
    --gray-300: #ebe5f5;
    --gray-400: #d9c8fb;
    --gray-500: #9ca3af;
}

/* =========================
   BASE
========================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(91, 62, 142, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(124, 92, 182, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, var(--soft-bg) 100%);
    color: var(--text-main);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
}

a {
    transition: color 0.25s ease, opacity 0.25s ease;
}

/* =========================
   NAVBAR
========================= */
.public-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 1rem 0;
    background: linear-gradient(135deg, #4f367d 0%, #5B3E8E 45%, #6f4dad 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 30px rgba(69, 47, 107, 0.18);
    backdrop-filter: blur(14px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.public-navbar.scrolled {
    background: linear-gradient(135deg, #452f6b 0%, #5B3E8E 45%, #6a4aa7 100%);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 38px rgba(69, 47, 107, 0.26);
}

.navbar-inner {
    min-height: 72px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    width: 180px;
    max-width: 100%;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-public-link {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-public-link:hover {
    color: rgba(255, 255, 255, 0.82);
}

/* =========================
   HERO
========================= */
.hero-section {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 104px);
    min-height: calc(100dvh - 104px);
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at left top, rgba(91, 62, 142, 0.10), transparent 34%),
        radial-gradient(circle at right center, rgba(123, 88, 190, 0.10), transparent 28%),
        linear-gradient(180deg, #fcfbff 0%, #f4effd 100%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    min-height: inherit;
}

.hero-row {
    min-height: inherit;
    align-items: center !important;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: inherit;
    max-width: 640px;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 999px;
    background: rgba(91, 62, 142, 0.08);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 4vw, 4.3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
}

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

.hero-desc {
    max-width: 650px;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.hero-mobile-image-wrap {
    display: none;
}

.hero-feature-list {
    margin-top: 1.5rem !important;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(91, 62, 142, 0.12);
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(91, 62, 142, 0.06);
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-cta-wrap {
    margin-top: 1.5rem !important;
}

.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: inherit;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 180px);
    max-height: calc(100dvh - 180px);
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 24px;
    box-shadow:
        0 20px 40px rgba(91, 62, 142, 0.12),
        0 10px 20px rgba(91, 62, 142, 0.08);
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    animation: heroRiseUp 0.8s ease-out 0.2s forwards;
}

@keyframes heroRiseUp {
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* =========================
   STATS HIGHLIGHT
========================= */
.stats-highlight-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 0;
}

.stats-highlight-full {
    width: 100%;
    background: linear-gradient(135deg, #4f367d 0%, #5B3E8E 45%, #6f4dad 100%);
    box-shadow: 0 18px 45px rgba(91, 62, 142, 0.18);
}

.stats-highlight-item {
    display: flex;
    align-items: center;
    min-height: 150px;
    padding: 2rem 1.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
}

.stats-highlight-item-last {
    border-right: 0;
}

.stats-highlight-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.stats-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.3rem;
}

.stats-highlight-title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 700;
}

/* =========================
   ABOUT
========================= */
.about-section {
    padding: 0;
}

.about-full {
    width: 100%;
    padding: 3.5rem 0;
    border-top: 1px solid rgba(91, 62, 142, 0.08);
    border-bottom: 1px solid rgba(91, 62, 142, 0.08);
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(91, 62, 142, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title-large {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-main-text {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
}

.about-card {
    padding: 1.25rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.06), rgba(123, 88, 190, 0.08));
}

/* =========================
   CONTENT / CARD
========================= */
.content-section {
    padding: 3rem 0 4rem;
}

.section-card {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.section-card-header {
    padding: 1.75rem 1.75rem 0;
}

.section-card-body {
    padding: 1.75rem;
}

.section-title {
    margin-bottom: 0.4rem;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-subtitle {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* =========================
   BUTTONS
========================= */
.btn-brand,
.btn-soft {
    min-height: 52px;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transform: scale(1);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease;
    will-change: transform;
}

.btn-brand {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(91, 62, 142, 0.16);
}

.btn-brand:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 14px 28px rgba(91, 62, 142, 0.22);
}

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

.btn-brand:focus {
    transform: scale(1.02);
}

.btn-soft {
    border: 1px solid rgba(91, 62, 142, 0.14);
    background: var(--white);
    color: var(--primary);
}

.btn-soft:hover {
    background: #f8f5ff;
    color: var(--primary);
    transform: scale(1.04);
    box-shadow: 0 12px 24px rgba(91, 62, 142, 0.12);
}

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

.btn-soft:focus {
    transform: scale(1.02);
}

/* =========================
   FORMS
========================= */
.form-control,
.form-select {
    min-height: 54px;
    padding-left: 1rem;
    padding-right: 1rem;
    border-color: rgba(91, 62, 142, 0.15);
    border-radius: 18px;
}

textarea.form-control {
    min-height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(91, 62, 142, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(91, 62, 142, 0.12);
}

/* =========================
   TOAST / SUCCESS
========================= */
.toast-container {
    z-index: 1080;
}

.success-state {
    display: none;
    padding: 2rem;
    border: 1px solid rgba(25, 135, 84, 0.14);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.08), rgba(255, 255, 255, 0.95));
    text-align: center;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.10);
    color: var(--success);
    font-size: 2rem;
}

/* =========================
   FOOTER
========================= */
.public-footer {
    margin-top: 0;
    padding: 4rem 0 3rem;
    background: #65479d;
    color: var(--white);
}

.footer-main {
    width: 100%;
}

.footer-brand-block {
    max-width: 360px;
}

.footer-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    margin-bottom: 2rem;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--white);
}

.footer-powered {
    margin-top: 2.8rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a,
.footer-contact div {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.45;
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.82);
}

.footer-map-wrap {
    width: 100%;
    min-height: 245px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   QUIZ
========================= */
.quiz-play-section {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
}

.quiz-hero-card,
.quiz-form-card,
.quiz-main-card,
.quiz-sidebar-card {
    overflow: hidden;
}

.quiz-hero-card .section-card-body {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.quiz-stat-box {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    height: 100%;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.06), rgba(123, 88, 190, 0.08));
}

.quiz-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: var(--purple-soft);
    color: var(--primary);
    font-size: 1.2rem;
}

.quiz-stat-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quiz-stat-title {
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.quiz-stat-value {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-main);
}

.quiz-ready-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.06), rgba(123, 88, 190, 0.08));
}

.quiz-ready-title {
    margin-bottom: 0.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.quiz-ready-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.quiz-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(91, 62, 142, 0.10);
    color: var(--primary);
    font-size: 2rem;
}

.quiz-sidebar-card {
    position: sticky;
    top: 110px;
}

.quiz-sidebar-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.quiz-sidebar-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.quiz-sidebar-title {
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-main);
}

.quiz-sidebar-subtitle {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.quiz-progress {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--gray-200);
}

.quiz-progress-bar {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #5B3E8E, #7b58be);
    transition: width 0.25s ease;
}

.quiz-question-list {
    display: grid;
    gap: 0.75rem;
}

.quiz-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 16px;
    background: var(--white);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-nav-item:hover {
    transform: translateY(-1px);
    border-color: rgba(91, 62, 142, 0.18);
    background: var(--bg-lighter);
}

.quiz-nav-item.active {
    border-color: rgba(91, 62, 142, 0.22);
    background: rgba(91, 62, 142, 0.08);
    box-shadow: 0 10px 24px rgba(91, 62, 142, 0.08);
}

.quiz-nav-item.done {
    border-color: rgba(25, 135, 84, 0.16);
    background: rgba(25, 135, 84, 0.04);
}

.quiz-nav-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.quiz-nav-label {
    font-size: 0.94rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-main);
}

.quiz-nav-sub {
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--text-muted);
}

.quiz-nav-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.95rem;
}

.quiz-nav-status.done {
    background: var(--success-soft);
    color: var(--success);
}

.quiz-question-head {
    margin-bottom: 1.75rem;
}

.quiz-question-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(91, 62, 142, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.quiz-question-title {
    margin-bottom: 0.65rem;
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    line-height: 1.35;
    font-weight: 800;
    color: var(--text-main);
}

.quiz-question-helper {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.quiz-options-wrap {
    display: grid;
    gap: 1rem;
}

.quiz-answer-card {
    position: relative;
}

.quiz-answer-input {
    display: none;
}

.quiz-answer-label {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border: 1.5px solid rgba(31, 41, 55, 0.12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.03);
    cursor: pointer;
    transition: all 0.22s ease;
}

.quiz-answer-label:hover {
    transform: translateY(-1px);
    border-color: rgba(91, 62, 142, 0.28);
    box-shadow: 0 14px 28px rgba(91, 62, 142, 0.08);
}

.quiz-answer-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    min-width: 64px;
    border-right: 1px solid rgba(31, 41, 55, 0.06);
    background: #f7f5fb;
    color: #4b5563;
    font-size: 1rem;
    font-weight: 800;
}

.quiz-answer-text {
    flex: 1;
    padding: 1.1rem 1.15rem;
    background: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 600;
}

.quiz-answer-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    background: var(--white);
    color: transparent;
    font-size: 1rem;
}

.quiz-answer-input:checked + .quiz-answer-label {
    border-color: var(--primary);
    box-shadow: 0 16px 30px rgba(91, 62, 142, 0.12);
}

.quiz-answer-input:checked + .quiz-answer-label .quiz-answer-key {
    background: rgba(91, 62, 142, 0.10);
    color: var(--primary);
}

.quiz-answer-input:checked + .quiz-answer-label .quiz-answer-text {
    background: var(--bg-light);
}

.quiz-answer-input:checked + .quiz-answer-label .quiz-answer-check {
    color: var(--primary);
}

.quiz-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.quiz-action-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quiz-summary-wrap {
    display: grid;
    gap: 0.85rem;
    max-width: 520px;
}

.quiz-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 16px;
    background: var(--white);
    color: var(--text-muted);
    font-weight: 600;
}

.quiz-summary-item strong {
    font-size: 1rem;
    color: var(--text-main);
}

#startQuizBtn:disabled,
#finishBtn:disabled {
    opacity: 0.75;
    pointer-events: none;
}

/* =========================
   LEADERBOARD
========================= */
.leaderboard-stat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 182px;
    overflow: hidden;
    padding: 1.35rem 1.35rem 1.25rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 22px;
    background: var(--white);
    box-shadow:
        0 18px 38px rgba(91, 62, 142, 0.08),
        0 6px 16px rgba(91, 62, 142, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.leaderboard-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 62, 142, 0.16);
    box-shadow:
        0 24px 48px rgba(91, 62, 142, 0.12),
        0 8px 18px rgba(91, 62, 142, 0.08);
}

.leaderboard-stat-topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5B3E8E 0%, #7B58BE 100%);
}

.leaderboard-stat-card-participants .leaderboard-stat-topbar,
.leaderboard-stat-topbar-participants {
    background: linear-gradient(90deg, #5B3E8E 0%, #8C6AE0 100%);
}

.leaderboard-stat-card-questions .leaderboard-stat-topbar,
.leaderboard-stat-topbar-questions {
    background: linear-gradient(90deg, #6A46B6 0%, #A47BFF 100%);
}

.leaderboard-stat-card-score .leaderboard-stat-topbar,
.leaderboard-stat-topbar-score {
    background: linear-gradient(90deg, #5B3E8E 0%, #FFBE04 100%);
}

.leaderboard-stat-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.2rem;
}

.leaderboard-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--purple-soft-2) 0%, var(--purple-soft) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: var(--primary);
    font-size: 1.3rem;
}

.leaderboard-stat-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.leaderboard-stat-title {
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.leaderboard-stat-value {
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.leaderboard-stat-unit {
    margin-left: 0.15rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.leaderboard-stat-caption {
    margin-top: 1.1rem;
    padding-top: 0.95rem;
    border-top: 1px dashed rgba(91, 62, 142, 0.12);
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.leaderboard-stat-box {
    overflow: hidden;
    border-radius: 20px;
    background: var(--white) !important;
    box-shadow: 0 12px 30px rgba(91, 62, 142, 0.08) !important;
}

.leaderboard-stat-box .card-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    padding: 1.35rem;
    background: var(--white);
}

.leaderboard-podium-card {
    border-radius: 20px;
}

.podium-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
    box-shadow: 0 10px 24px rgba(91, 62, 142, 0.06);
}

.podium-item.gold {
    border-color: rgba(255, 193, 7, 0.35);
}

.podium-item.silver {
    border-color: rgba(108, 117, 125, 0.20);
}

.podium-item.bronze {
    border-color: rgba(205, 127, 50, 0.25);
}

.podium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: var(--purple-soft);
    color: var(--primary);
    font-size: 1.15rem;
}

.podium-rank {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 800;
    color: var(--primary);
}

.podium-name {
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
}

.podium-meta {
    font-size: 0.875rem;
    line-height: 1.55;
    word-break: break-word;
    color: var(--text-muted);
}

.podium-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(91, 62, 142, 0.08);
    border-radius: 14px;
    background: var(--white);
}

.podium-mini-stat small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.podium-mini-stat strong {
    font-size: 1rem;
    color: var(--text-main);
}

.leaderboard-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--gray-300);
}

.leaderboard-progress .progress-bar {
    border-radius: 999px;
    background: var(--primary);
}

.leaderboard-table thead th {
    white-space: nowrap;
    font-size: 0.875rem;
}

.leaderboard-table tbody td {
    vertical-align: middle;
}

.leaderboard-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.leaderboard-rank-badge.first {
    background: rgba(255, 193, 7, 0.15);
    color: #9a6b00;
}

.leaderboard-rank-badge.second {
    background: rgba(108, 117, 125, 0.12);
    color: #495057;
}

.leaderboard-rank-badge.third {
    background: rgba(205, 127, 50, 0.14);
    color: #9a5528;
}

.leaderboard-rank-text {
    font-weight: 700;
    color: var(--primary);
}

.leaderboard-percent-badge {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--gray-400);
    border-radius: 999px;
    background: var(--purple-soft);
    color: var(--primary);
    font-weight: 600;
}

/* =========================
   PUBLIC PAYMENT INVOICE
========================= */
.public-invoice-wrapper {
    max-width: 980px;
    margin: 0 auto;
}

.public-invoice-main-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
}

.public-alert {
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(91, 62, 142, 0.08);
}

.invoice-page {
    max-width: 900px;
    margin: 0 auto;
}

.invoice-card {
    position: relative;
    overflow: visible;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(45, 28, 80, 0.10);
}

.invoice-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 145px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: #f4f4f5;
}

.invoice-brand {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 26px 30px;
}

.invoice-logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}

.invoice-title-box {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    min-height: 118px;
    margin-right: 24px;
    margin-bottom: -34px;
    border-bottom-left-radius: 26px;
    border-bottom-right-radius: 26px;
    background: var(--white);
    box-shadow: 0 12px 24px rgba(45, 28, 80, 0.08);
}

.invoice-title-box h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2d2f39;
}

.invoice-circle-outline {
    position: absolute;
    top: 30px;
    left: 22px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--primary);
    border-radius: 50%;
}

.invoice-circle-solid {
    position: absolute;
    top: 18px;
    left: 40px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.invoice-banner {
    position: relative;
    z-index: 1;
    padding: 22px 30px 54px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    line-height: 1.6;
}

.invoice-banner-item strong {
    color: var(--white);
}

.invoice-body {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 0 30px 18px;
}

.invoice-table-wrap {
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid #ece7f4;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(45, 28, 80, 0.08);
}

.invoice-table {
    background: var(--white);
}

.invoice-table thead th {
    padding: 16px 18px;
    border-top: none;
    border-bottom: 2px solid #d4c8ea;
    background: var(--white);
    color: #3a3a46;
    font-size: 13px;
    font-weight: 700;
}

.invoice-table tbody td {
    padding: 15px 18px;
    border-bottom: 1px solid #ece7f4;
    background: var(--white);
    color: #3a3a46;
    font-size: 14px;
}

.invoice-table tbody tr:last-child td {
    border-bottom: none;
}

.invoice-bottom {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.invoice-meta-block {
    font-size: 13px;
    line-height: 1.8;
    color: #4e4a58;
}

.invoice-summary {
    padding-top: 8px;
    border-radius: 18px;
    background: var(--white);
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
}

.summary-table td {
    padding: 7px 0;
    font-size: 14px;
    color: #3d3947;
}

.grand-total-row td {
    padding-top: 14px;
    border-top: 1px solid #d8d1e5;
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
}

.public-payment-action {
    margin-top: 28px;
    text-align: center;
}

.invoice-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: end;
    padding: 4px 30px 30px;
}

.invoice-contact-card {
    max-width: 270px;
    padding: 18px 20px;
    border-radius: 0 18px 18px 18px;
    background: var(--primary);
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.8;
}

.contact-icon {
    display: inline-block;
    width: 16px;
    text-align: center;
    opacity: 0.95;
}

.invoice-signature-wrap {
    padding-top: 8px;
    text-align: center;
}

.invoice-date {
    margin-bottom: 20px;
    font-size: 13px;
    color: #3d3947;
}

.signature-mark {
    margin-bottom: 6px;
}

.signature-line {
    width: 160px;
    margin: 0 auto 10px;
    border-top: 2px solid #c5bfce;
}

.signature-name {
    font-size: 13px;
    font-weight: 600;
    color: #2f2f39;
}

/* =========================
   WORKSHOP LIST
========================= */
.workshop-list-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.workshop-list-heading {
    max-width: 760px;
    margin: 0 auto 2.25rem;
}

.workshop-grid {
    row-gap: 1.5rem;
}

.workshop-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.workshop-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 28px;
    background: var(--white);
    box-shadow:
        0 18px 38px rgba(91, 62, 142, 0.08),
        0 8px 18px rgba(91, 62, 142, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.workshop-card-link:hover .workshop-card {
    transform: translateY(-6px);
    border-color: rgba(91, 62, 142, 0.18);
    box-shadow:
        0 24px 46px rgba(91, 62, 142, 0.12),
        0 12px 24px rgba(91, 62, 142, 0.08);
}

.workshop-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.12), rgba(123, 88, 190, 0.18));
}

.workshop-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.workshop-card-link:hover .workshop-card-image {
    transform: scale(1.04);
}

.workshop-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(91, 62, 142, 0.10);
}

.workshop-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem;
}

.workshop-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.workshop-meta-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(91, 62, 142, 0.28);
}

.workshop-card-title {
    margin-bottom: 0.85rem;
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #313247;
}

.workshop-card-desc {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.workshop-card-price-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.workshop-price-old {
    color: #ef4444;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: line-through;
}

.workshop-price-current {
    color: #8b93a1;
    font-size: 1.15rem;
    font-weight: 500;
}

.workshop-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #4b5563;
    font-weight: 600;
}

.workshop-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #f59e0b;
    font-size: 1.15rem;
}

.workshop-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(91, 62, 142, 0.08);
    color: var(--primary);
    font-weight: 700;
}

.workshop-list {
    display: grid;
    gap: 0.9rem;
}

.workshop-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.05), rgba(123, 88, 190, 0.08));
    color: var(--text-main);
    line-height: 1.7;
    font-weight: 600;
}

.workshop-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--primary);
    font-size: 1rem;
}

.workshop-detail-copy {
    color: var(--text-muted);
    line-height: 1.8;
}

.workshop-subtitle {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
}

/* =========================
   WORKSHOP SHOW
========================= */
.workshop-show-hero {
    padding: 2.5rem 0 3rem;
    background:
        radial-gradient(circle at top left, rgba(91, 62, 142, 0.12), transparent 28%),
        radial-gradient(circle at right center, rgba(123, 88, 190, 0.12), transparent 26%),
        linear-gradient(180deg, #f7f2ff 0%, #f9f7fd 100%);
}

.workshop-show-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.workshop-show-back:hover {
    color: var(--primary-dark);
}

.workshop-show-main {
    max-width: 100%;
}

.workshop-show-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(91, 62, 142, 0.10);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.workshop-show-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-main);
}

.workshop-show-desc {
    max-width: 920px;
    margin-bottom: 1.15rem;
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.workshop-show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.2rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    font-weight: 600;
}

.workshop-show-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.workshop-show-meta .bi-star-fill {
    color: #f59e0b;
}

.workshop-video-card {
    overflow: hidden;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 30px;
    background: var(--white);
    box-shadow:
        0 22px 46px rgba(91, 62, 142, 0.10),
        0 10px 22px rgba(91, 62, 142, 0.06);
}

.workshop-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #121212;
}

.workshop-video-wrap iframe,
.workshop-video-wrap video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.workshop-show-layout {
    align-items: stretch;
}

.workshop-show-sidebar-col {
    position: sticky;
    top: 110px;
    align-self: flex-start;
}

.workshop-show-sidebar {
    overflow: hidden;
    border: 1px solid rgba(91, 62, 142, 0.10);
    border-radius: 28px;
    background: var(--white);
    box-shadow:
        0 18px 38px rgba(91, 62, 142, 0.08),
        0 8px 18px rgba(91, 62, 142, 0.05);
    padding: 1.25rem;
}

.workshop-show-sidebar-image {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(91, 62, 142, 0.12), rgba(123, 88, 190, 0.18));
}

.workshop-show-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-show-price-box {
    margin-top: 1.1rem;
}

.workshop-show-old-price {
    margin-bottom: 0.2rem;
    color: #ef4444;
    font-weight: 700;
    text-decoration: line-through;
}

.workshop-show-price {
    color: var(--primary);
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.workshop-show-summary {
    display: grid;
    gap: 0;
    margin-top: 1.35rem;
    padding-top: 0.25rem;
}

.workshop-show-summary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(91, 62, 142, 0.08);
}

.workshop-show-summary-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.workshop-show-summary-row span {
    color: var(--text-muted);
    font-weight: 600;
}

.workshop-show-summary-row strong {
    color: var(--text-main);
    font-weight: 800;
    text-align: right;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {
    .hero-image-desktop {
        max-width: 500px;
        max-height: calc(100vh - 200px);
        max-height: calc(100dvh - 200px);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0 2.5rem;
    }

    .hero-section .container {
        display: block;
        min-height: auto;
    }

    .hero-row {
        min-height: auto;
        align-items: center !important;
    }

    .hero-content {
        align-items: center;
        justify-content: center;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-badge,
    .hero-title,
    .hero-desc {
        text-align: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-mobile-image-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 1.5rem 0;
    }

    .hero-image-mobile {
        width: 100%;
        max-width: 420px;
        max-height: none;
        margin: 0 auto;
        border-radius: 22px;
    }

    .hero-feature-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem !important;
        margin-top: 0 !important;
    }

    .hero-feature-list .feature-chip {
        justify-content: center;
        width: 100%;
        text-align: center;
        font-size: 0.92rem;
    }

    .hero-cta-wrap {
        justify-content: center;
        width: 100%;
        margin-top: 1.25rem !important;
    }

    .hero-cta-wrap .btn {
        justify-content: center;
        width: 100%;
    }

    .section-card {
        border-radius: 22px;
    }

    .stats-highlight-item {
        min-height: auto;
        padding: 1.5rem 1.25rem;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .stats-highlight-item-last {
        border-bottom: 0;
    }

    .stats-highlight-head {
        align-items: flex-start;
    }

    .about-full {
        padding: 2.75rem 0;
    }

    .public-footer {
        padding: 3rem 0 2.5rem;
    }

    .footer-brand-block {
        max-width: 100%;
    }

    .quiz-play-section {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .quiz-sidebar-card {
        position: static;
    }

    .quiz-action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .quiz-action-right {
        width: 100%;
        justify-content: stretch;
    }

    .quiz-action-right .btn,
    .quiz-action-bar > .btn {
        width: 100%;
    }

    .workshop-show-sidebar-col {
        position: static;
    }
}

@media (max-width: 768px) {
    .invoice-top,
    .invoice-bottom,
    .invoice-footer {
        display: block;
    }

    .invoice-title-box {
        width: calc(100% - 28px);
        min-height: 96px;
        margin: 0 14px -24px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .invoice-title-box h1 {
        font-size: 32px;
    }

    .invoice-banner {
        padding: 18px 20px 42px;
    }

    .invoice-body {
        margin-top: -20px;
        padding: 0 16px 18px;
    }

    .invoice-summary,
    .invoice-signature-wrap {
        margin-top: 22px;
    }

    .invoice-footer {
        padding: 8px 16px 20px;
    }
}

@media (max-width: 767.98px) {
    .leaderboard-stat-value {
        font-size: 1.6rem;
    }

    .leaderboard-stat-box .card-body {
        min-height: 165px;
    }

    .podium-item {
        padding: 1rem;
    }

    .leaderboard-table thead th,
    .leaderboard-table tbody td {
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .navbar-inner {
        min-height: 64px;
    }

    .brand-logo-img {
        width: 150px;
    }

    .nav-public-link {
        font-size: 0.95rem;
        color: var(--white);
    }

    .hero-section {
        padding: 1.5rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .feature-chip {
        font-size: 0.88rem;
    }

    .hero-image-mobile {
        max-width: 100%;
        border-radius: 20px;
        box-shadow:
            0 16px 30px rgba(91, 62, 142, 0.12),
            0 8px 16px rgba(91, 62, 142, 0.08);
    }

    .stats-highlight-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 1.2rem;
    }

    .stats-highlight-title {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-title-large {
        font-size: 1.65rem;
    }

    .section-card-header,
    .section-card-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .btn-brand,
    .btn-soft {
        justify-content: center;
        width: 100%;
    }

    .footer-logo {
        width: 210px;
    }

    .footer-address,
    .footer-powered,
    .footer-links a,
    .footer-contact div {
        font-size: 0.95rem;
    }

    .footer-map-wrap iframe {
        height: 220px;
    }

    .quiz-play-section {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }

    .quiz-question-title {
        font-size: 1.2rem;
    }

    .quiz-answer-key {
        width: 52px;
        min-width: 52px;
    }

    .quiz-answer-check {
        width: 46px;
        min-width: 46px;
    }

    .quiz-nav-item {
        padding: 0.85rem 0.9rem;
    }

    .workshop-list-heading {
        margin-bottom: 1.75rem;
    }

    .workshop-card {
        border-radius: 22px;
    }

    .workshop-card-body {
        padding: 1.1rem;
    }

    .workshop-card-title {
        font-size: 1.25rem;
    }

    .workshop-stars {
        font-size: 1rem;
    }

    .workshop-show-hero {
        padding: 1.75rem 0 2.5rem;
    }

    .workshop-show-title {
        font-size: 1.8rem;
    }

    .workshop-video-card {
        border-radius: 22px;
    }

    .workshop-show-sidebar {
        border-radius: 22px;
        padding: 1rem;
    }

    .workshop-show-price {
        font-size: 1.7rem;
    }
}



