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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text: #f1f5f9;
    --text-muted: #a8b3c4;
    --border: #475569;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.brand-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.brand-text {
    letter-spacing: -0.02em;
}

.brand-accent {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--surface-light);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
}

.landing-container {
    text-align: center;
    padding: 3rem 0;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 4rem;
    text-align: left;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text);
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Compact Hero */
.hero-compact {
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: var(--background);
}

.hero-compact h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-compact .hero-gradient {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-compact .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero-compact .hero-audience {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-compact h1 {
        font-size: 2rem;
    }
    
    .hero-compact .hero-subtitle {
        font-size: 1rem;
    }
}

/* Hero Connector */
.hero-connector {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: var(--background);
}

.connector-skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.skill-tag:nth-child(1) { animation-delay: 0s; }
.skill-tag:nth-child(2) { animation-delay: 0.5s; }
.skill-tag:nth-child(3) { animation-delay: 1s; }
.skill-tag:nth-child(4) { animation-delay: 1.5s; }
.skill-tag:nth-child(5) { animation-delay: 2s; }
.skill-tag:nth-child(6) { animation-delay: 2.5s; }

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.connector-line {
    max-width: 400px;
    margin: 0 auto;
    height: 40px;
}

.connector-line svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .skill-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .connector-skills {
        gap: 0.5rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 2rem 2rem 4rem;
    background: var(--background);
    text-align: center;
}

.welcome-intro {
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.welcome-intro strong {
    color: var(--primary);
    font-weight: 700;
}

.mission-title {
    font-size: 2.5rem;
    color: var(--text);
    margin: 0 0 2.5rem;
    font-weight: 700;
}

.mission-statement {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.mission-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-intro strong {
    color: var(--text);
}

.mission-intro .highlight {
    color: var(--primary);
    font-weight: 600;
}

.mission-problem-clean {
    margin-bottom: 2.5rem;
}

.mission-problem-clean .problem-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

.mission-problem-clean .problem-statement {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.mission-bridge p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.bridge-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bridge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 0.6rem 1.25rem;
    transition: all 0.2s;
}

.bridge-item:hover {
    border-color: var(--primary);
}

.bridge-from {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bridge-item svg {
    color: var(--primary);
}

.bridge-to {
    color: var(--success);
    font-weight: 600;
    font-size: 0.9rem;
}

.core-idea-clean {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.core-idea-clean h3 {
    font-size: 1.35rem;
    color: var(--text);
    margin: 0 0 1rem;
    font-weight: 600;
}

.core-idea-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.core-idea-text strong {
    color: var(--primary);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.belief-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.belief-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.belief-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.belief-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.belief-card p strong {
    color: var(--text);
}

.mission-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .welcome-intro {
        font-size: 1.25rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .mission-problem-clean .problem-statement {
        font-size: 1.25rem;
    }
    
    .bridge-items {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .bridge-item {
        justify-content: center;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
}

.hero-audience {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

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

.skill-radar {
    position: relative;
    width: 280px;
    height: 280px;
}

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

.radar-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 1;
}

.radar-inner {
    fill: none;
    stroke: var(--border);
    stroke-width: 1;
    opacity: 0.5;
}

.radar-data {
    fill: rgba(99, 102, 241, 0.2);
    stroke: var(--primary);
    stroke-width: 2;
    animation: radar-expand 2s ease-out forwards;
}

@keyframes radar-expand {
    from { 
        opacity: 0;
        transform: scale(0.5);
        transform-origin: center;
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

.radar-point {
    fill: var(--primary);
    animation: point-pop 0.5s ease-out forwards;
    opacity: 0;
}

.radar-point:nth-child(4) { animation-delay: 0.3s; }
.radar-point:nth-child(5) { animation-delay: 0.5s; }
.radar-point:nth-child(6) { animation-delay: 0.7s; }
.radar-point:nth-child(7) { animation-delay: 0.9s; }

@keyframes point-pop {
    from { opacity: 0; r: 0; }
    to { opacity: 1; r: 4; }
}

.radar-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.radar-labels span {
    position: absolute;
    white-space: nowrap;
}

.label-top { top: -5px; left: 50%; transform: translateX(-50%); }
.label-right { right: -10px; top: 50%; transform: translateY(-50%); }
.label-bottom { bottom: -5px; left: 50%; transform: translateX(-50%); }
.label-left { left: -10px; top: 50%; transform: translateY(-50%); }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.feature-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 60ch;
}

.feature-outcome {
    color: var(--text) !important;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature-method {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.feature-metrics .metric {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
}

.feature-metrics .metric svg {
    flex-shrink: 0;
}

.quick-steps-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    margin: 3rem 0;
}

.quick-steps-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quick-steps-title {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.quick-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.quick-step svg {
    color: var(--primary);
    flex-shrink: 0;
}

.quick-step-arrow {
    color: var(--text-muted);
    opacity: 0.5;
}

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

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 50ch;
    margin: 0 auto;
}

.who-uses {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.who-uses-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.who-uses-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.who-uses-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.who-uses-item svg {
    color: var(--primary);
}

.final-cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--primary);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 2rem;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.final-cta-section h2 {
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.final-cta-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.submissions-section h2 {
    margin-bottom: 1.5rem;
}

.submissions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.submission-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.submission-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.submission-module {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.submission-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.submission-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.score-high {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.score-medium {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.score-low {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.score-category {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: 1rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.submit-container {
    max-width: 800px;
    margin: 0 auto;
}

.submit-container h1 {
    margin-bottom: 0.5rem;
}

.submit-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.essay-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 300px;
    line-height: 1.6;
}

.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.char-count {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.result-container {
    margin-top: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

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

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: var(--text);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.module-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.result-date {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.score-main {
    font-size: 3.5rem;
    font-weight: 700;
    border-radius: 1rem;
    padding: 1rem 2rem;
}

.score-max {
    font-size: 1.5rem;
    opacity: 0.6;
}

.score-category-label {
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.result-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.result-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.dimension-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.dimension-header h4 {
    font-size: 0.95rem;
}

.dimension-level {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.level-1 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.level-2 {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.level-3 {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.level-4 {
    background: rgba(79, 70, 229, 0.2);
    color: var(--primary);
}

.dimension-level-name {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.dimension-justification {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
}

.feedback-content,
.assignment-content,
.essay-preview {
    line-height: 1.7;
    color: var(--text);
    white-space: pre-wrap;
}

.improvement-section {
    border-left: 4px solid var(--secondary);
}

.essay-preview {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.error-container {
    text-align: center;
    padding: 4rem 2rem;
}

.error-container h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.error-container h2 {
    margin-bottom: 1rem;
}

.error-container p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.footer p::before {
    content: "Skillverse - ";
}

.topics-container,
.admin-container,
.create-topic-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.folders-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.folder {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.folder.unlocked {
    border-color: var(--primary);
}

.folder.completed {
    border-color: var(--success);
}

.folder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.folder-header:hover {
    background: var(--surface-light);
}

.folder-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.folder-icon {
    font-size: 2rem;
}

.folder-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.folder-title {
    font-size: 1.25rem;
    margin: 0;
}

.folder-progress {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.folder-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.complete {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-badge.in-progress {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.status-badge.locked {
    background: rgba(156, 163, 175, 0.2);
    color: var(--text-muted);
}

.folder-toggle {
    display: flex;
    align-items: center;
}

.chevron {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.folder.open .chevron {
    transform: rotate(180deg);
}

.folder-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.progress-bar-container {
    height: 4px;
    background: var(--border);
    margin: 0 1.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.tasks-list {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
}

.task-item.current {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.task-item.completed {
    opacity: 0.7;
}

.task-item.locked {
    opacity: 0.5;
}

.task-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.task-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-current {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.task-locked {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.task-title {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.task-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.task-meta {
    display: flex;
    gap: 0.5rem;
}

.task-type {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    background: var(--surface-light);
    border-radius: 0.25rem;
    color: var(--text-muted);
}

.task-action {
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.level-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 1rem;
    border: 1px solid var(--border);
}

.level-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.level-indicator.unlocked {
    opacity: 1;
}

.level-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.level-indicator.unlocked .level-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.level-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.level-indicator.unlocked .level-name {
    color: var(--text);
}

.level-connector {
    width: 40px;
    height: 3px;
    background: var(--border);
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease;
}

.level-connector.unlocked {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.topic-card.locked {
    position: relative;
    opacity: 0.6;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 0.5rem;
}

.lock-icon {
    font-size: 2rem;
}

.lock-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0 1rem;
}

.btn-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.topic-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-card h3 {
    margin: 0;
}

.topic-description {
    color: var(--text-muted);
    flex: 1;
    line-height: 1.6;
}

.topic-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.topic-badge,
.topic-badge-large {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.difficulty-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.difficulty-1 {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.difficulty-2 {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.difficulty-3 {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.difficulty-4 {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.topic-badge-large {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
    margin-bottom: 0.5rem;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-topic-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.topic-info {
    flex: 1;
}

.topic-status {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.topic-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.topic-status.inactive {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.topic-meta {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.topic-meta span {
    margin-right: 1.5rem;
}

.topic-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
}

.topic-form input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
}

.topic-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.topic-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.topic-details {
    margin-top: 1rem;
}

.selected-topic-details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.selected-topic-details h2 {
    margin: 0.75rem 0 1rem 0;
    font-size: 1.5rem;
}

.topic-description-full {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.formatted-text {
    white-space: pre-wrap;
    line-height: 1.8;
}

.formatted-text .numbered-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.formatted-text .item-number {
    color: var(--primary);
    font-weight: 600;
    min-width: 1.5rem;
}

.formatted-text .item-content {
    flex: 1;
}

.topic-instructions {
    background: var(--surface);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.topic-instructions h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.topic-instructions p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.active-topics-section {
    margin-bottom: 2rem;
}

.active-topics-section h2 {
    margin-bottom: 1rem;
}

.topics-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.mini-topic-card {
    flex: 0 0 280px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s;
}

.mini-topic-card:hover {
    border-color: var(--primary);
}

.mini-badge {
    display: inline-block;
    background: var(--surface-light);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.mini-topic-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

.mini-topic-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.view-all-link {
    display: flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
    padding: 0 1rem;
}

.section {
    margin-top: 5rem;
    padding-top: 3rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--text), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    text-align: left;
}

.module-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
}

.module-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-header.entrepreneurship {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.1));
    border-bottom: 2px solid var(--primary);
}

.module-header.soft-skills {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(79, 70, 229, 0.1));
    border-bottom: 2px solid var(--secondary);
}

.module-icon {
    font-size: 2rem;
}

.module-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.dimension-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.dimension-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.dimension-list li:last-child {
    border-bottom: none;
}

.dimension-list li::before {
    content: "✓";
    color: var(--secondary);
    margin-right: 0.75rem;
}

.score-levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.score-levels .level {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

.level.beginner {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.level.developing {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.level.ready {
    background: rgba(34, 197, 94, 0.2);
    color: var(--success);
}

.level.founder {
    background: rgba(79, 70, 229, 0.2);
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

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

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.community-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}

.community-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community-card h3 {
    margin-bottom: 0.75rem;
}

.community-card > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.community-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.community-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--surface), var(--surface-light));
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.cta-section h2 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 1.75rem;
}

.stat-content .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-content .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.chart-container {
    margin-bottom: 2rem;
}

.score-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    padding: 0 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 0.25rem 0.25rem 0 0;
    min-height: 10px;
    position: relative;
    transition: all 0.3s;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-tooltip {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.chart-bar:hover .chart-tooltip {
    opacity: 1;
}

.chart-labels {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 0;
}

.chart-labels span {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.dimension-breakdown h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.dimension-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dimension-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dimension-bar-label {
    width: 150px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dimension-bar-track {
    flex: 1;
    height: 8px;
    background: var(--background);
    border-radius: 4px;
    overflow: hidden;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s;
}

.dimension-bar-fill.level-1 { background: var(--error); }
.dimension-bar-fill.level-2 { background: var(--warning); }
.dimension-bar-fill.level-3 { background: var(--success); }
.dimension-bar-fill.level-4 { background: var(--primary); }

.dimension-bar-value {
    width: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.empty-analytics, .empty-timeline, .empty-passport, .no-recommendations {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.passport-book {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #4a5568;
}

.passport-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #4a5568;
    margin-bottom: 1rem;
}

.passport-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e2e8f0;
}

.passport-subtitle {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-top: 0.25rem;
}

.passport-stamps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.stamp {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed #4a5568;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.stamp.completed {
    border-color: var(--success);
    border-style: solid;
    background: rgba(34, 197, 94, 0.1);
}

.stamp.in-progress {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.stamp.locked {
    opacity: 0.5;
}

.stamp-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stamp.completed .stamp-icon { color: var(--success); }
.stamp.in-progress .stamp-icon { color: var(--warning); }

.stamp-name {
    font-size: 0.7rem;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.stamp-status {
    font-size: 0.6rem;
    color: #a0aec0;
}

.journey-timeline {
    position: relative;
    padding-left: 2rem;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.25rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid var(--surface);
}

.timeline-marker.high { background: var(--success); }
.timeline-marker.medium { background: var(--warning); }
.timeline-marker.low { background: var(--error); }

.timeline-content {
    background: var(--background);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.timeline-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.timeline-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.timeline-more {
    text-align: center;
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.achievement-card.locked {
    opacity: 0.5;
}

.achievement-card.unlocked {
    border-left: 3px solid var(--success);
}

.achievement-icon {
    font-size: 1.5rem;
}

.achievement-info {
    flex: 1;
}

.achievement-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.achievement-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.achievement-check {
    color: var(--success);
    font-weight: 700;
}

.weak-areas {
    margin-bottom: 1rem;
}

.weak-areas-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.weak-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.weak-tag {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.recommended-topics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommended-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.recommended-card:hover {
    background: var(--surface-light);
}

.recommended-difficulty {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.recommended-title {
    flex: 1;
    font-size: 0.9rem;
}

.sidebar-topics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-topic-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.sidebar-topic-card:hover {
    background: var(--surface-light);
}

.sidebar-topic-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
}

.sidebar-topic-title {
    flex: 1;
    font-size: 0.85rem;
}

.view-all-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
}

.view-all-btn:hover {
    text-decoration: underline;
}

/* Analytical Dashboard Styles */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.header-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.analytics-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.analytics-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: border-color 0.2s, transform 0.2s;
}

.analytics-stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrap.accent-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary);
}

.stat-icon-wrap.accent-yellow {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.stat-icon-wrap.accent-purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.stat-icon-wrap.accent-red {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.stat-value-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-value-lg {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
}

.stat-suffix {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.text-green { color: var(--success) !important; }
.text-red { color: var(--error) !important; }

.stat-bar {
    height: 4px;
    background: var(--background);
    border-radius: 2px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.5s ease;
}

.level-badge-beginner { color: var(--text-muted); }
.level-badge-intermediate { color: var(--warning); }
.level-badge-advanced { color: var(--primary); }
.level-badge-expert { color: var(--success); }

.analytics-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.analytics-panel.compact {
    padding: 1.25rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.panel-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.panel-header h2 svg {
    color: var(--primary);
}

.panel-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--background);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.chart-container {
    display: flex;
    gap: 0.5rem;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0 0.5rem 1.5rem 0;
    text-align: right;
    width: 30px;
}

.chart-area {
    flex: 1;
    position: relative;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    height: 1px;
    background: var(--border);
    opacity: 0.3;
}

.score-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 150px;
    padding-bottom: 1.5rem;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.chart-bar {
    width: 100%;
    max-width: 40px;
    border-radius: 0.25rem 0.25rem 0 0;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.chart-bar.bar-high {
    background: linear-gradient(to top, #059669, #10b981);
}

.chart-bar.bar-medium {
    background: linear-gradient(to top, #d97706, #f59e0b);
}

.chart-bar.bar-low {
    background: linear-gradient(to top, #dc2626, #ef4444);
}

.chart-bar:hover {
    filter: brightness(1.1);
}

.chart-tooltip {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.chart-bar:hover .chart-tooltip {
    opacity: 1;
}

.chart-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.dimension-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.dimension-card {
    background: var(--background);
    border-radius: 0.5rem;
    padding: 1rem;
}

.dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dimension-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.dimension-score {
    font-weight: 700;
    color: var(--text);
}

.dim-max {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.dimension-bar-track {
    height: 6px;
    background: var(--surface-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.dimension-bar-fill.level-high { background: linear-gradient(90deg, #059669, #10b981); }
.dimension-bar-fill.level-medium { background: linear-gradient(90deg, #0284c7, #0ea5e9); }
.dimension-bar-fill.level-low { background: linear-gradient(90deg, #d97706, #f59e0b); }
.dimension-bar-fill.level-critical { background: linear-gradient(90deg, #dc2626, #ef4444); }

.dimension-level {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.empty-analytics {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
}

.empty-analytics svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-analytics p {
    margin-bottom: 1rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.activity-item:hover {
    background: var(--surface-light);
}

.activity-score-ring {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.activity-score-ring svg {
    width: 44px;
    height: 44px;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--border);
    stroke-width: 3;
}

.ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.activity-score-ring.ring-high .ring-fill { stroke: var(--success); }
.activity-score-ring.ring-medium .ring-fill { stroke: var(--warning); }
.activity-score-ring.ring-low .ring-fill { stroke: var(--error); }

.ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 700;
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.activity-category {
    color: var(--primary);
}

.activity-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
}

.panel-footer {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.achievement-row.locked {
    opacity: 0.5;
}

.achievement-row.unlocked {
    border-left: 3px solid var(--success);
}

.achievement-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-row.unlocked .achievement-icon-wrap {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

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

.achievement-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.achievement-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.achievement-check {
    color: var(--success);
    flex-shrink: 0;
}

.focus-panel {
    border-color: rgba(239, 68, 68, 0.3);
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.focus-tag {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

.focus-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.recommended-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommended-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.recommended-item:hover {
    background: var(--surface-light);
}

.rec-difficulty {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    flex-shrink: 0;
}

.rec-title {
    font-size: 0.85rem;
    flex: 1;
}

.assignments-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.assignment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem;
    background: var(--background);
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.assignment-item:hover {
    background: var(--surface-light);
}

.assignment-level {
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.6rem;
    font-weight: 600;
    flex-shrink: 0;
}

.assignment-title {
    font-size: 0.8rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-all-link {
    display: block;
    text-align: center;
    padding: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Skill Passport Panel */
.skill-passport-panel {
    background: linear-gradient(135deg, var(--surface) 0%, #1a2744 100%);
    border: 1px solid #2d4a6f;
}

.passport-container {
    background: var(--background);
    border-radius: 0.5rem;
    overflow: hidden;
}

.passport-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-bottom: 1px solid var(--border);
}

.passport-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.passport-user svg {
    color: var(--primary);
}

.passport-stats {
    display: flex;
    gap: 1.25rem;
}

.passport-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.passport-stat svg {
    color: var(--success);
}

.passport-stamps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    padding: 1rem;
}

.passport-stamp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.passport-stamp.completed {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.1);
}

.passport-stamp.in-progress {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.passport-stamp.locked {
    opacity: 0.5;
}

.stamp-status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--background);
}

.passport-stamp.completed .stamp-status-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.passport-stamp.in-progress .stamp-status-icon {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.passport-stamp.locked .stamp-status-icon {
    color: var(--text-muted);
}

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

.stamp-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stamp-level {
    font-size: 0.7rem;
    margin-top: 0.2rem;
}

.empty-passport-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .analytics-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .skill-radar {
        width: 220px;
        height: 220px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .dimension-bar-label {
        width: 100px;
    }
}

.current-level-indicator {
    margin-bottom: 1.5rem;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 2px solid;
}

.level-icon {
    font-size: 2rem;
}

.level-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.level-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.level-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.task-selection-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.panel-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
    color: var(--text);
}

.panel-subtitle {
    margin: 0 0 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.task-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-card {
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.task-card:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.task-card.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.task-card.next-task {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.task-card.completed-task {
    opacity: 0.7;
}

.task-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.task-level-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.next-badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.completed-badge {
    background: var(--success);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.task-card-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text);
}

.task-card-description {
    margin: 0 0 1rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.task-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-module-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    background: var(--surface);
    border-radius: 0.25rem;
}

.task-select-indicator {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.task-card:hover .task-select-indicator {
    opacity: 1;
}

.selected-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.selected-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-change-task {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.btn-change-task:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============== COMMUNITY STYLES ============== */

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.community-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.community-header h1 {
    font-size: 2rem;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.community-tagline {
    color: var(--text-muted);
    margin: 0;
    font-size: 1rem;
}

.community-user-stats {
    display: flex;
    gap: 2rem;
}

.user-stat-item {
    text-align: center;
}

.user-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.user-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.community-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.section-header h2 svg {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.skill-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-room-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.skill-room-card:hover {
    border-color: var(--room-color, var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.room-icon {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--room-color, var(--primary)) 15%, transparent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--room-color, var(--primary));
    flex-shrink: 0;
}

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

.room-info h3 {
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.room-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-stats {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.room-arrow {
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s;
}

.skill-room-card:hover .room-arrow {
    opacity: 1;
    color: var(--room-color, var(--primary));
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.recent-post-item:hover {
    border-color: var(--primary);
}

.post-author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.post-content-preview {
    flex: 1;
    min-width: 0;
}

.post-content-preview h4 {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.post-content-preview p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.post-room {
    color: var(--primary);
}

.community-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 1rem;
}

.sidebar-card h3 svg {
    color: var(--primary);
}

.contributors-list, .performers-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contributor-item, .performer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contributor-avatar, .performer-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.contributor-info, .performer-info {
    flex: 1;
}

.contributor-name, .performer-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.contributor-posts, .performer-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.performer-rank {
    width: 24px;
    height: 24px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.empty-sidebar {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem 0;
}

.sidebar-link {
    display: block;
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-decoration: none;
}

.sidebar-link:hover {
    text-decoration: underline;
}

.culture-list, .guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.culture-list li, .guidelines-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.culture-list li:last-child, .guidelines-list li:last-child {
    border-bottom: none;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.challenge-item {
    padding: 0.75rem;
    background: var(--background);
    border-radius: 0.5rem;
}

.challenge-title {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.challenge-ends {
    font-size: 0.75rem;
    color: var(--warning);
}

/* Skill Room Page */
.room-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--primary);
}

.room-header {
    margin-bottom: 2rem;
}

.room-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.room-header-icon {
    width: 72px;
    height: 72px;
    background: color-mix(in srgb, var(--room-color, var(--primary)) 15%, transparent);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--room-color, var(--primary));
}

.room-header-content h1 {
    font-size: 1.75rem;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.room-header-content p {
    color: var(--text-muted);
    margin: 0;
}

.room-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

.new-post-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.new-post-section h3 {
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 1rem;
}

.new-post-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-title-input {
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
}

.post-title-input:focus {
    outline: none;
    border-color: var(--primary);
}

.post-content-input {
    padding: 0.75rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    min-height: 120px;
    resize: vertical;
}

.post-content-input:focus {
    outline: none;
    border-color: var(--primary);
}

.post-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-type-select {
    padding: 0.5rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.posts-section h3 {
    font-size: 1rem;
    color: var(--text);
    margin: 0 0 1rem;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-card {
    display: block;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.post-card:hover {
    border-color: var(--primary);
}

.post-card.pinned {
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.pinned-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.9rem;
    color: var(--text);
}

.post-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.post-type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: capitalize;
}

.post-type-badge.type-discussion {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.post-type-badge.type-question {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
}

.post-type-badge.type-idea {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.post-type-badge.type-showcase {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.post-title {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.post-preview {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.post-footer {
    display: flex;
    gap: 1.5rem;
}

.post-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-stat svg {
    opacity: 0.7;
}

.empty-posts {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-posts svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.challenge-active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    border-color: var(--warning);
}

.challenge-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--warning);
    color: var(--background);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.challenge-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.8rem;
}

.challenge-points {
    color: var(--primary);
    font-weight: 600;
}

/* Post Detail Page */
.post-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.post-detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.post-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.post-author-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name-large {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.post-timestamp {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.post-detail-title {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.post-detail-content {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    white-space: pre-wrap;
}

.post-detail-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.replies-section h2 {
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 1.5rem;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reply-input-wrap {
    display: flex;
    gap: 1rem;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.reply-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    min-height: 80px;
    resize: vertical;
}

.reply-input:focus {
    outline: none;
    border-color: var(--primary);
}

.replies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reply-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.reply-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reply-author-info {
    display: flex;
    flex-direction: column;
}

.reply-author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.reply-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reply-content {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: pre-wrap;
}

.no-replies {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

/* Leaderboard Page */
.leaderboard-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.leaderboard-header h1 {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    color: var(--text);
    margin: 1rem 0 0.5rem;
}

.leaderboard-header h1 svg {
    color: var(--warning);
}

.leaderboard-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.leaderboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leaderboard-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
}

.leaderboard-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.leaderboard-section h2 svg {
    color: var(--primary);
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.leaderboard-item.top-three {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.rank-badge {
    width: 32px;
    height: 32px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rank-badge.rank-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a2e;
}

.rank-badge.rank-1 svg {
    fill: #1a1a2e;
}

.rank-badge.rank-2 {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: white;
}

.rank-badge.rank-3 {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: white;
}

.leaderboard-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.leaderboard-info {
    flex: 1;
}

.leaderboard-name {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.leaderboard-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.avg-score {
    color: var(--success);
}

.trophy-icon {
    color: var(--text-muted);
}

.trophy-icon.trophy-1 {
    color: #fbbf24;
}

.trophy-icon.trophy-2 {
    color: #94a3b8;
}

.trophy-icon.trophy-3 {
    color: #d97706;
}

.empty-leaderboard {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .community-layout,
    .room-layout,
    .leaderboard-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .community-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .community-container,
    .room-container,
    .post-detail-container,
    .leaderboard-container {
        padding: 1rem;
    }
}

/* ============== LIGHT LANDING PAGE STYLES ============== */

.landing-light {
    background: linear-gradient(180deg, #faf7f4 0%, #ffffff 50%, #faf7f4 100%);
    min-height: 100vh;
    margin: -2rem;
    padding: 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-split h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #6366f1;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: white;
    color: #1a1a2e;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.play-icon {
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.hero-audience-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.audience-tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #64748b;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
}

.blob-teal {
    width: 180px;
    height: 180px;
    background: #14b8a6;
    top: 10%;
    left: 5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob-yellow {
    width: 120px;
    height: 120px;
    background: #fbbf24;
    top: 5%;
    right: 15%;
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.blob-blue {
    width: 150px;
    height: 150px;
    background: #3b82f6;
    bottom: 20%;
    right: 5%;
    border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%;
}

.blob-orange {
    width: 100px;
    height: 100px;
    background: #f97316;
    bottom: 10%;
    left: 20%;
    border-radius: 50% 50% 70% 30% / 60% 40% 60% 40%;
}

.skill-card {
    position: absolute;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.skill-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.skill-card-label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.skill-card-1 {
    top: 15%;
    left: 30%;
}

.skill-card-2 {
    top: 45%;
    right: 10%;
}

.skill-card-3 {
    bottom: 25%;
    left: 15%;
}

.stat-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    z-index: 10;
}

.stat-badge .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.stat-badge .stat-text {
    font-size: 0.7rem;
    color: #64748b;
}

.stat-badge-1 {
    top: 25%;
    right: 25%;
    background: #14b8a6;
}

.stat-badge-1 .stat-number {
    color: white;
}

.stat-badge-1 .stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.stat-badge-2 {
    bottom: 40%;
    left: 5%;
    background: #3b82f6;
}

.stat-badge-2 .stat-number {
    color: white;
}

.stat-badge-2 .stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.stat-badge-3 {
    bottom: 5%;
    right: 30%;
    background: #fbbf24;
}

.stat-badge-3 .stat-number {
    color: #1a1a2e;
}

.stat-badge-3 .stat-text {
    color: rgba(26, 26, 46, 0.8);
}

.welcome-section {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-intro {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
}

.welcome-intro strong {
    color: #6366f1;
}

.mission-light {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.mission-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.mission-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    color: #6366f1;
}

.problem-card {
    background: #f8f7f5;
    border: 1px solid #e5e2dd;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.problem-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.problem-text {
    font-size: 1.5rem;
    color: #6366f1;
    margin: 0;
}

.bridge-section {
    margin-bottom: 2rem;
}

.bridge-intro {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.bridge-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bridge-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.from-label {
    color: #94a3b8;
    font-weight: 500;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.to-label {
    color: #6366f1;
    font-weight: 600;
}

.core-section {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.core-section h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.core-text {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.beliefs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.belief-card-light {
    background: #faf7f4;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.belief-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin: 0 auto 1rem;
}

.belief-card-light p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-light {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.features-light h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 3rem;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    max-width: 220px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.85rem;
    color: #64748b;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    color: #cbd5e1;
}

.modules-light {
    background: #faf7f4;
    padding: 4rem 2rem;
    text-align: center;
}

.modules-light h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.modules-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.module-card-light {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.module-icon-wrap {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.module-card-light h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.module-list li {
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f5f9;
}

.module-list li:last-child {
    border-bottom: none;
}

.level-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.level-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.module-entrepreneurship {
    border-top: 4px solid #f97316;
}

.module-softskills {
    border-top: 4px solid #3b82f6;
}

.trust-light {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.trust-light h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    margin: 0 auto 1rem;
}

.trust-card h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.trust-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.who-uses-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.who-label {
    font-size: 0.9rem;
    color: #64748b;
}

.who-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.who-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    color: #475569;
    font-size: 0.9rem;
}

.who-tag svg {
    color: #6366f1;
}

.community-light {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
}

.community-light h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.community-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.community-card-light {
    background: #faf7f4;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.community-icon-wrap {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.community-card-light h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.community-card-light p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.community-stat-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-stat-badge .stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
    margin-right: 0.25rem;
}

.community-stat-badge .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

.cta-light {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cta-light h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-light .btn-cta-primary {
    background: white;
    color: #6366f1;
}

.cta-light .btn-cta-primary:hover {
    background: #faf7f4;
}

@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-audience-tags {
        justify-content: center;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .beliefs-row,
    .trust-row,
    .community-row {
        grid-template-columns: 1fr;
    }
    
    .steps-row {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        padding: 0;
        margin: 1rem 0;
    }
    
    .modules-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-split h1 {
        font-size: 2rem;
    }
    
    .hero-right {
        display: none;
    }
    
    .bridge-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ============== LIGHT THEME BASE STYLES ============== */

body.light-theme {
    background: #faf7f4;
    color: #1a1a2e;
}

.navbar-light {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand-light {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
}

.brand-text-light {
    letter-spacing: -0.02em;
    color: #1a1a2e;
}

.nav-links-light {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links-light a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links-light a:hover {
    color: #6366f1;
}

.user-info-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info-light span {
    color: #1a1a2e;
}

.btn-light-outline {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-light-outline:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.main-content-light {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

.footer-light {
    background: white;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    padding: 1.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* ============== LIGHT DASHBOARD STYLES ============== */

.dashboard-light {
    margin: -2rem;
    padding: 0;
}

.dashboard-header-light {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 3rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-content .header-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.dashboard-header-light h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-name {
    color: #fbbf24;
}

.header-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}

.header-actions-light {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-action-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    color: #6366f1;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-primary:hover {
    background: #f1f5f9;
}

.btn-action-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.stats-grid-light {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.stat-card-light {
    background: #faf7f4;
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-icon-light {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-light.stat-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-icon-light.stat-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon-light.stat-yellow {
    background: rgba(251, 191, 36, 0.1);
    color: #f59e0b;
}

.stat-icon-light.stat-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-icon-light.stat-red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.stat-icon-light.stat-gray {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

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

.stat-number-light {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
}

.stat-suffix-light {
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
}

.stat-label-light {
    font-size: 0.85rem;
    color: #64748b;
}

.stat-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.stat-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 2px;
}

.level-text {
    color: #6366f1 !important;
}

.text-success {
    color: #10b981 !important;
}

.text-danger {
    color: #ef4444 !important;
}

.dashboard-grid-light {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    padding: 2rem 3rem;
}

.main-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-light {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.panel-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.panel-header-light h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.panel-header-light h2 svg {
    color: #6366f1;
}

.panel-badge-light {
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.panel-compact {
    padding-bottom: 1rem;
}

.panel-warning {
    border-left: 4px solid #f59e0b;
}

.chart-container-light {
    display: flex;
    padding: 1.5rem;
    gap: 1rem;
}

.chart-y-axis-light {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #94a3b8;
    padding: 0 0.5rem 2rem 0;
}

.chart-area-light {
    flex: 1;
    position: relative;
    height: 200px;
}

.chart-grid-light {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.grid-line-light {
    height: 1px;
    background: #f1f5f9;
}

.chart-bars-light {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding-bottom: 2rem;
    gap: 0.5rem;
}

.chart-bar-wrap-light {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar-light {
    width: 100%;
    max-width: 40px;
    border-radius: 0.25rem 0.25rem 0 0;
    position: relative;
    transition: all 0.3s;
}

.chart-bar-light.bar-high {
    background: linear-gradient(180deg, #10b981, #34d399);
}

.chart-bar-light.bar-medium {
    background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.chart-bar-light.bar-low {
    background: linear-gradient(180deg, #ef4444, #f87171);
}

.bar-tooltip-light {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a1a2e;
    opacity: 0;
    transition: opacity 0.2s;
}

.chart-bar-light:hover .bar-tooltip-light {
    opacity: 1;
}

.bar-label-light {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: #94a3b8;
}

.empty-state-light {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #94a3b8;
    text-align: center;
    gap: 1rem;
}

.empty-state-light p {
    font-size: 0.9rem;
}

.dimensions-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.dimension-card-light {
    background: #faf7f4;
    padding: 1rem;
    border-radius: 0.75rem;
}

.dimension-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.dimension-name-light {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}

.dimension-score-light {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6366f1;
}

.dimension-score-light span {
    font-weight: 400;
    color: #94a3b8;
}

.dimension-bar-light {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.dimension-fill-light {
    height: 100%;
    border-radius: 3px;
}

.dimension-fill-light.fill-high {
    background: #10b981;
}

.dimension-fill-light.fill-medium {
    background: #f59e0b;
}

.dimension-fill-light.fill-low {
    background: #f97316;
}

.dimension-fill-light.fill-critical {
    background: #ef4444;
}

.dimension-level-light {
    font-size: 0.7rem;
    color: #64748b;
}

.passport-light {
    padding: 1.5rem;
}

.passport-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #faf7f4;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.passport-user-light {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
}

.passport-user-light svg {
    color: #6366f1;
}

.passport-stats-light {
    display: flex;
    gap: 1rem;
}

.passport-stat-light {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #64748b;
}

.passport-stat-light svg {
    color: #10b981;
}

.passport-stamps-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.passport-stamp-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #faf7f4;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.passport-stamp-light.completed {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.passport-stamp-light.completed .stamp-icon-light {
    color: #10b981;
}

.passport-stamp-light.in-progress {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.passport-stamp-light.in-progress .stamp-icon-light {
    color: #6366f1;
}

.passport-stamp-light.locked .stamp-icon-light {
    color: #94a3b8;
}

.stamp-icon-light {
    flex-shrink: 0;
}

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

.stamp-title-light {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stamp-level-light {
    font-size: 0.7rem;
    color: #64748b;
}

.empty-passport-light {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
}

.activity-list-light {
    padding: 0.5rem;
}

.activity-item-light {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s;
}

.activity-item-light:hover {
    background: #faf7f4;
}

.activity-score-light {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.activity-score-light.score-high {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.activity-score-light.score-medium {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.activity-score-light.score-low {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.activity-details-light {
    flex: 1;
    min-width: 0;
}

.activity-title-light {
    display: block;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.activity-meta-light {
    font-size: 0.8rem;
    color: #64748b;
}

.activity-arrow-light {
    color: #94a3b8;
}

.panel-footer-light {
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
}

.achievements-list-light {
    padding: 0.5rem 1rem;
}

.achievement-item-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.achievement-item-light.unlocked {
    background: rgba(16, 185, 129, 0.1);
}

.achievement-item-light.locked {
    opacity: 0.5;
}

.achievement-icon-light {
    width: 36px;
    height: 36px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    flex-shrink: 0;
}

.achievement-item-light.unlocked .achievement-icon-light {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

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

.achievement-name-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}

.achievement-desc-light {
    font-size: 0.75rem;
    color: #64748b;
}

.achievement-check-light {
    color: #10b981;
}

.focus-tags-light {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem;
}

.focus-tag-light {
    padding: 0.35rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.focus-hint-light {
    padding: 0.75rem 1rem 0;
    font-size: 0.75rem;
    color: #94a3b8;
}

.recommended-list-light {
    padding: 0.5rem 1rem;
}

.recommended-item-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
}

.recommended-item-light:hover {
    background: #faf7f4;
}

.rec-difficulty-light {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.rec-difficulty-light.difficulty-1 {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.rec-difficulty-light.difficulty-2 {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.rec-difficulty-light.difficulty-3 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.rec-difficulty-light.difficulty-4 {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.rec-title-light {
    font-size: 0.85rem;
    color: #1a1a2e;
}

/* ============== LIGHT COMMUNITY / MESSENGER STYLES ============== */

.community-light {
    margin: -2rem;
    padding: 0;
}

.community-header-light {
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    padding: 3rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.community-header-content-light .header-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.community-header-light h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.community-tagline-light {
    opacity: 0.9;
    font-size: 1rem;
}

.community-header-actions .btn-action-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.messenger-layout {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 0;
    background: white;
    min-height: calc(100vh - 200px);
}

.messenger-sidebar {
    background: #faf7f4;
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
}

.messenger-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.messenger-section {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.messenger-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.messenger-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.messenger-room-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
}

.messenger-room-item:hover {
    background: white;
}

.room-avatar {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.room-preview {
    flex: 1;
    min-width: 0;
}

.room-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}

.room-desc {
    font-size: 0.75rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.room-count {
    background: #e2e8f0;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
}

.contributors-list-light {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contributor-row-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.contributor-avatar-light {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.contributor-info-light {
    flex: 1;
}

.contributor-name-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}

.contributor-count-light {
    font-size: 0.75rem;
    color: #64748b;
}

.empty-text-light {
    font-size: 0.85rem;
    color: #94a3b8;
    padding: 0.5rem;
}

.challenges-list-light {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.challenge-item-light {
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border-left: 3px solid #f59e0b;
}

.challenge-title-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.challenge-ends-light {
    font-size: 0.75rem;
    color: #f59e0b;
}

.messenger-main {
    background: white;
    display: flex;
    flex-direction: column;
}

.messenger-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.messenger-main-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.messenger-main-header h2 svg {
    color: #6366f1;
}

.quick-meeting-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.messenger-feed {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.message-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.message-item:hover {
    background: #faf7f4;
}

.message-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
    min-width: 0;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.message-author {
    font-weight: 500;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.message-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
}

.message-preview {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.message-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-room {
    padding: 0.2rem 0.5rem;
    background: var(--room-color, #e2e8f0);
    color: white;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.message-replies {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
}

.post-type-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.post-type-badge.type-discussion {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.post-type-badge.type-question {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.post-type-badge.type-idea {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.post-type-badge.type-showcase {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.empty-feed-light {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: #94a3b8;
    text-align: center;
}

.messenger-info {
    background: #faf7f4;
    border-left: 1px solid #e2e8f0;
    padding: 1.5rem;
    overflow-y: auto;
}

.info-section {
    margin-bottom: 1.5rem;
}

.info-section h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.stats-row-light {
    display: flex;
    gap: 1rem;
}

.stat-item-light {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.stat-value-light {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.stat-label-sm {
    font-size: 0.75rem;
    color: #64748b;
}

.values-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list-light li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

.values-list-light li:last-child {
    border-bottom: none;
}

.values-list-light svg {
    color: #10b981;
    flex-shrink: 0;
}

.quick-links-light {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link-light {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    color: #1a1a2e;
    transition: background 0.2s;
}

.quick-link-light:hover {
    background: #e2e8f0;
}

.quick-link-light svg {
    color: #6366f1;
}

@media (max-width: 1200px) {
    .messenger-layout {
        grid-template-columns: 260px 1fr;
    }
    
    .messenger-info {
        display: none;
    }
}

@media (max-width: 992px) {
    .stats-grid-light {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-grid-light {
        grid-template-columns: 1fr;
    }
    
    .messenger-layout {
        grid-template-columns: 1fr;
    }
    
    .messenger-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-grid-light {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }
    
    .dashboard-header-light,
    .community-header-light {
        padding: 2rem 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-grid-light {
        padding: 1rem;
    }
}

/* ============== SKILL ROOM LIGHT STYLES ============== */

.room-light {
    margin: -2rem;
    padding: 0;
}

.room-header-light {
    padding: 2rem 3rem;
    color: white;
}

.back-link-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: opacity 0.2s;
}

.back-link-light:hover {
    opacity: 0.8;
}

.room-header-content-light {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.room-header-icon-light {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-header-light h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.room-header-light p {
    opacity: 0.9;
}

.room-layout-light {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 2rem 3rem;
    background: #faf7f4;
}

.room-main-light {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.new-post-section-light {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.new-post-section-light h3 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.new-post-form-light {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-title-input-light,
.post-content-input-light,
.post-type-select-light {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    background: #faf7f4;
    color: #1a1a2e;
    transition: border-color 0.2s;
}

.post-title-input-light:focus,
.post-content-input-light:focus,
.post-type-select-light:focus {
    outline: none;
    border-color: #6366f1;
}

.post-content-input-light {
    min-height: 100px;
    resize: vertical;
}

.post-form-footer-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-type-select-light {
    width: auto;
}

.posts-section-light h3 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.posts-list-light {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-card-light {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.post-card-light:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.post-card-light.pinned {
    border-left: 4px solid #6366f1;
}

.pinned-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.post-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.post-author-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-light {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.author-info-light {
    display: flex;
    flex-direction: column;
}

.author-name-light {
    font-weight: 500;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.post-time-light {
    font-size: 0.75rem;
    color: #94a3b8;
}

.post-title-light {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.post-preview-light {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-footer-light {
    display: flex;
    gap: 1.5rem;
}

.post-stat-light {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #64748b;
}

.post-stat-light svg {
    color: #94a3b8;
}

.empty-posts-light {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1rem;
    color: #94a3b8;
    text-align: center;
}

.room-sidebar-light {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card-light {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-card-light h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.sidebar-card-light h3 svg {
    color: #fbbf24;
}

.challenge-active-light {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.challenge-badge-light {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #f59e0b;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.challenge-meta-light {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.challenge-points-light {
    color: #f59e0b;
    font-weight: 600;
}

.challenge-ends-light {
    color: #64748b;
}

.performers-list-light {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.performer-item-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.performer-rank-light {
    width: 24px;
    height: 24px;
    background: #faf7f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
}

.performer-avatar-light {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.performer-info-light {
    flex: 1;
}

.performer-name-light {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a2e;
}

.performer-count-light {
    font-size: 0.75rem;
    color: #64748b;
}

.empty-sidebar-light {
    font-size: 0.85rem;
    color: #94a3b8;
}

.guidelines-card-light {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.guidelines-card-light h3 {
    color: #166534;
}

.guidelines-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list-light li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.85rem;
    color: #166534;
}

.guidelines-list-light li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
}

@media (max-width: 992px) {
    .room-layout-light {
        grid-template-columns: 1fr;
    }
    
    .room-sidebar-light {
        display: none;
    }
}

@media (max-width: 768px) {
    .room-header-light,
    .room-layout-light {
        padding: 1.5rem;
    }
    
    .room-header-content-light {
        flex-direction: column;
        text-align: center;
    }
}

/* ============== TOPICS LIST LIGHT STYLES ============== */

.topics-light {
    margin: -2rem;
    padding: 0;
}

.topics-header-light {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    padding: 3rem;
    color: white;
}

.topics-header-light h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.topics-header-light p {
    opacity: 0.9;
}

.topics-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: #faf7f4;
}

.topic-card-light {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.topic-card-light:hover {
    border-color: #10b981;
    transform: translateY(-2px);
}

.topic-card-light.locked {
    opacity: 0.6;
}

.topic-difficulty-light {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.topic-difficulty-light.difficulty-1 {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.topic-difficulty-light.difficulty-2 {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.topic-difficulty-light.difficulty-3 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.topic-difficulty-light.difficulty-4 {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.topic-title-light {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.topic-desc-light {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ============== SUBMIT PAGE LIGHT STYLES ============== */

.submit-light {
    margin: -2rem;
    padding: 0;
}

.submit-header-light {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    padding: 3rem;
    color: white;
}

.submit-header-light h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.submit-container-light {
    padding: 2rem 3rem;
    background: #faf7f4;
}

.submit-form-light {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group-light {
    margin-bottom: 1.5rem;
}

.form-label-light {
    display: block;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-input-light,
.form-textarea-light,
.form-select-light {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    background: #faf7f4;
    color: #1a1a2e;
    transition: border-color 0.2s;
}

.form-input-light:focus,
.form-textarea-light:focus,
.form-select-light:focus {
    outline: none;
    border-color: #6366f1;
}

.form-textarea-light {
    min-height: 300px;
    resize: vertical;
    line-height: 1.6;
}

.submit-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ============== RESULT PAGE LIGHT STYLES ============== */

.result-light {
    margin: -2rem;
    padding: 0;
}

.result-header-light {
    padding: 3rem;
    color: white;
    text-align: center;
}

.result-header-light.score-high {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
}

.result-header-light.score-medium {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.result-header-light.score-low {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.result-score-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.result-category {
    font-size: 1.25rem;
    opacity: 0.9;
}

.result-container-light {
    padding: 2rem 3rem;
    background: #faf7f4;
}

.result-grid-light {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.result-main-light {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-panel-light {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-panel-light h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.result-panel-light h3 svg {
    color: #6366f1;
}

@media (max-width: 992px) {
    .result-grid-light {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topics-grid-light,
    .submit-container-light,
    .result-container-light {
        padding: 1.5rem;
    }
    
    .topics-header-light,
    .submit-header-light,
    .result-header-light {
        padding: 2rem 1rem;
    }
}

/* ============== TOPICS FOLDER STYLES ============== */

.folders-container-light {
    padding: 2rem 3rem;
    background: #faf7f4;
}

.folder-light {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.folder-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.folder-header-light:hover {
    background: #faf7f4;
}

.folder-info-light {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.folder-icon-light {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.folder-title-group-light {
    display: flex;
    flex-direction: column;
}

.folder-title-light {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.folder-progress-light {
    font-size: 0.85rem;
    color: #64748b;
}

.folder-status-light {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-badge-light {
    padding: 0.35rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge-light.complete {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge-light.in-progress {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.status-badge-light.locked {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.folder-toggle-light {
    color: #64748b;
    transition: transform 0.3s;
}

.folder-light.open .folder-toggle-light {
    transform: rotate(180deg);
}

.folder-content-light {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.progress-bar-container-light {
    height: 4px;
    background: #e2e8f0;
    margin: 0 1.5rem 1rem;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-light {
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tasks-list-light {
    padding: 0 1.5rem 1.5rem;
}

.task-item-light {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #faf7f4;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.task-item-light:last-child {
    margin-bottom: 0;
}

.task-item-light.current {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.task-item-light.completed {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.task-item-light.locked {
    opacity: 0.6;
}

.task-number-light {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-check-light {
    width: 36px;
    height: 36px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.task-current-light {
    width: 36px;
    height: 36px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.task-locked-light {
    width: 36px;
    height: 36px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
}

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

.task-title-light {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
}

.task-description-light {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.task-meta-light {
    display: flex;
    gap: 0.5rem;
}

.task-type-light {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.task-type-light.type-entrepreneurship {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.task-type-light.type-softskills {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.task-action-light {
    flex-shrink: 0;
}

.btn-task-light {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-task-light.btn-start {
    background: #6366f1;
    color: white;
}

.btn-task-light.btn-start:hover {
    background: #4f46e5;
}

.btn-task-light.btn-review {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.btn-task-light.btn-review:hover {
    background: rgba(16, 185, 129, 0.2);
}

.btn-task-light.btn-locked {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

/* ============== SUBMIT PAGE SPECIFIC STYLES ============== */

.header-meta-light {
    margin-top: 0.75rem;
}

.module-badge-light {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.current-level-light {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.level-indicator-light {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid;
}

.level-label-light {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.level-name-light {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.task-selection-light {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.selection-title-light {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.selection-subtitle-light {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.task-cards-light {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.task-card-light {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.task-card-light:hover {
    border-color: #6366f1;
}

.task-card-light.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.task-card-light.next-task {
    border-color: #6366f1;
}

.task-card-light.completed-task {
    border-color: #10b981;
    opacity: 0.7;
}

.task-card-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.task-level-badge-light {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.next-badge-light {
    padding: 0.2rem 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.completed-badge-light {
    padding: 0.2rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.task-card-title-light {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
}

.task-card-desc-light {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 0.75rem 0;
}

.task-card-footer-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-module-light {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
}

.task-module-light.type-entrepreneurship {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.task-module-light.type-softskills {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.selected-topic-light {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.selected-header-light {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.selected-label-light {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

.btn-change-light {
    padding: 0.35rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.topic-badges-light {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.difficulty-badge-light {
    padding: 0.2rem 0.5rem;
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.selected-title-light {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
}

.topic-details-light {
    margin-bottom: 2rem;
}

.topic-details-light h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.topic-description-light {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.topic-instructions-light {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #faf7f4;
    border-radius: 0.75rem;
}

.topic-instructions-light h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.char-count-light {
    text-align: right;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.form-actions-light {
    text-align: right;
}

/* ============== RESULT PAGE SPECIFIC STYLES ============== */

.result-meta-light {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.date-badge-light {
    font-size: 0.85rem;
    opacity: 0.9;
}

.result-sidebar-light {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-content-light {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    white-space: pre-wrap;
}

.assignment-content-light {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
}

.improvement-panel-light {
    border-left: 4px solid #f59e0b;
}

.essay-preview-light {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem;
    background: #faf7f4;
    border-radius: 0.5rem;
}

.next-steps-light {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.next-step-btn-light {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #6366f1;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.next-step-btn-light:hover {
    background: #4f46e5;
}

.next-step-btn-light.secondary {
    background: #faf7f4;
    color: #1a1a2e;
}

.next-step-btn-light.secondary:hover {
    background: #e2e8f0;
}

/* ============== LEADERBOARD LIGHT STYLES ============== */

.leaderboard-light {
    margin: -2rem;
    padding: 0;
}

.leaderboard-header-light {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    padding: 3rem;
    color: white;
}

.leaderboard-header-light h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.leaderboard-container-light {
    padding: 2rem 3rem;
    background: #faf7f4;
}

.leaderboard-tabs-light {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab-btn-light {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn-light.active {
    background: #6366f1;
    color: white;
    border-color: #6366f1;
}

.leaderboard-list-light {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.leaderboard-item-light {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.leaderboard-rank-light {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.leaderboard-rank-light.rank-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.leaderboard-rank-light.rank-2 {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: white;
}

.leaderboard-rank-light.rank-3 {
    background: linear-gradient(135deg, #d97706, #b45309);
    color: white;
}

.leaderboard-rank-light.rank-other {
    background: #faf7f4;
    color: #64748b;
}

.leaderboard-avatar-light {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.leaderboard-info-light {
    flex: 1;
}

.leaderboard-name-light {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
}

.leaderboard-stats-light {
    font-size: 0.85rem;
    color: #64748b;
}

.leaderboard-score-light {
    text-align: right;
}

.score-value-light {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.score-label-light {
    font-size: 0.75rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .folders-container-light {
        padding: 1.5rem;
    }
    
    .task-cards-light {
        grid-template-columns: 1fr;
    }
}

/* ============== LANDING COMMUNITY SECTION ============== */

.community-section-light {
    padding: 5rem 3rem;
    background: #faf7f4;
}

.community-grid-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.community-feed-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feed-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feed-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.feed-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feed-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.feed-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.feed-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.feed-badge.showcase {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.feed-badge.question {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.feed-badge.idea {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feed-content {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.feed-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.community-copy-light {
    padding: 2rem;
}

.community-copy-light h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin: 0 0 2rem 0;
}

.community-copy-light .highlight-text {
    color: #6366f1;
}

.community-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.community-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.community-bullets li:last-child {
    border-bottom: none;
}

.community-bullets span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e;
}

.btn-community-join {
    display: inline-block;
    padding: 1rem 2rem;
    background: #6366f1;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-community-join:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .community-grid-light {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-copy-light {
        order: -1;
        text-align: center;
        padding: 0;
    }
    
    .community-bullets li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .community-section-light {
        padding: 3rem 1.5rem;
    }
    
    .community-copy-light h2 {
        font-size: 1.75rem;
    }
}

/* ============== DELETE BUTTONS ============== */

.delete-form {
    display: inline;
}

.btn-delete-light {
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 0.5rem;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-light:hover {
    background: #ef4444;
    color: white;
}

.btn-delete-small {
    padding: 0.35rem;
    background: transparent;
    border: none;
    border-radius: 0.25rem;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-small:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.post-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* ============== POST DETAIL LIGHT THEME ============== */

.post-detail-container {
    background: #faf7f4;
    min-height: 100vh;
    padding: 2rem 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: #6366f1;
}

.post-detail-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.post-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.post-author-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name-large {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

.post-timestamp {
    font-size: 0.85rem;
    color: #94a3b8;
}

.post-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1.5rem 0;
}

.post-detail-content {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-detail-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.replies-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.replies-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 1.5rem 0;
}

.reply-form {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.reply-input-wrap {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #14b8a6, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.reply-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
}

.reply-input:focus {
    outline: none;
    border-color: #6366f1;
}

.replies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reply-card {
    padding: 1rem;
    background: #faf7f4;
    border-radius: 0.75rem;
}

.reply-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.reply-author-info {
    display: flex;
    flex-direction: column;
}

.reply-author-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.reply-time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.reply-content {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.no-replies {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #4f46e5;
}

/* ============== RESULT PAGE DARK HEADER & CHART ============== */

.result-header-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #3b3b5e 50%, #6366f1 100%);
    padding: 2rem 3rem 3rem;
    color: white;
}

.result-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 4px solid;
}

.score-ring.ring-high {
    border-color: #10b981;
}

.score-ring.ring-medium {
    border-color: #f59e0b;
}

.score-ring.ring-low {
    border-color: #ef4444;
}

.score-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.score-max {
    font-size: 1rem;
    opacity: 0.7;
}

.score-info {
    text-align: left;
}

.score-category-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-meta {
    display: flex;
    gap: 0.75rem;
}

.chart-container {
    max-width: 280px;
    margin: 0 auto 1.5rem;
}

.chart-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #faf7f4;
    border-radius: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-label {
    flex: 1;
    font-size: 0.8rem;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.legend-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6366f1;
    padding: 0.15rem 0.4rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.25rem;
}

.dimension-score-light {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.dimension-score-light.level-4 {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dimension-score-light.level-3 {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.dimension-score-light.level-2 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.dimension-score-light.level-1 {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ============== FEEDBACK STYLING ============== */

.feedback-panel,
.improvement-panel {
    border-left: 4px solid #6366f1;
}

.improvement-panel {
    border-left-color: #f59e0b;
}

.feedback-content-styled,
.assignment-content-styled {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
}

.feedback-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.feedback-heading:first-child {
    margin-top: 0;
}

.feedback-paragraph {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.feedback-list {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.feedback-list li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.feedback-list.numbered {
    list-style-type: decimal;
}

.feedback-highlight {
    color: #1a1a2e;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.1rem 0.3rem;
    border-radius: 0.2rem;
}

.feedback-emphasis {
    color: #6366f1;
    font-style: italic;
}

@media (max-width: 768px) {
    .result-score-display {
        flex-direction: column;
        text-align: center;
    }
    
    .score-info {
        text-align: center;
    }
    
    .chart-legend {
        grid-template-columns: 1fr;
    }
}

/* ============== DARK PAGE HEADER THEME ============== */

.page-header-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #3b3b5e 50%, #6366f1 100%);
    padding: 2rem 3rem;
    color: white;
}

.page-header-dark h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.page-header-dark p {
    opacity: 0.9;
    margin: 0;
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.header-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-content-dark {
    flex: 1;
}

.header-actions-dark {
    display: flex;
    gap: 0.75rem;
}

.btn-action-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-outline:hover {
    background: rgba(255, 255, 255, 0.25);
}

.header-meta-dark {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.module-badge-dark {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.room-header-dark {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-header-content-dark {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.room-header-icon-dark {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.room-header-content-dark h1 {
    font-size: 1.5rem;
    margin: 0;
}

.room-header-content-dark p {
    margin: 0.25rem 0 0 0;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .page-header-dark {
        padding: 1.5rem;
    }
    
    .page-header-dark h1 {
        font-size: 1.5rem;
    }
    
    .header-actions-dark {
        margin-top: 1rem;
    }
}

/* ============== NEW DASHBOARD LAYOUT ============== */

.dashboard-new {
    margin: -2rem;
    background: #e8f4fc;
    min-height: calc(100vh - 60px);
}

.dashboard-header-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #3b3b5e 50%, #6366f1 100%);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.dashboard-header-new .header-left .header-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.dashboard-header-new h1 {
    font-size: 1.5rem;
    margin: 0.75rem 0 0;
    font-weight: 600;
}

.dashboard-header-new .highlight-name {
    color: #fbbf24;
}

.dashboard-header-new .header-right {
    display: flex;
    gap: 0.75rem;
}

.btn-header-outline {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-header-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-header-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: white;
    color: #1a1a2e;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-header-primary:hover {
    background: #f1f5f9;
}

.dashboard-grid-new {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card-large {
    grid-column: 1;
    grid-row: 1;
}

.card-medium {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.learning-overview {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.avg-performance {
    grid-column: 2;
    grid-row: 1;
}

.skill-developed {
    grid-column: 1;
    grid-row: 2;
}

.submission-time {
    grid-column: 2;
    grid-row: 2;
}

.exercise-list {
    grid-column: 1 / -1;
    grid-row: 3;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0.25rem 0 0;
}

.header-stats {
    display: flex;
    gap: 2rem;
}

.header-stat {
    text-align: right;
}

.header-stat .stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.header-stat .stat-lbl {
    font-size: 0.75rem;
    color: #94a3b8;
}

.line-chart-container {
    height: 200px;
    margin-top: 1rem;
}

.empty-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    color: #94a3b8;
}

.empty-chart svg {
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.empty-chart p {
    margin: 0;
    font-size: 0.9rem;
}

.empty-chart.small {
    height: 140px;
}

.empty-chart.small svg {
    width: 36px;
    height: 36px;
}

.performance-ring-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.performance-ring {
    position: relative;
    color: #10b981;
}

.performance-ring.ring-medium {
    color: #f59e0b;
}

.performance-ring.ring-low {
    color: #ef4444;
}

.ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.performance-stats {
    display: flex;
    gap: 2rem;
}

.perf-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perf-stat .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.perf-stat .dot.orange {
    background: #f97316;
}

.perf-stat .dot.blue {
    background: #3b82f6;
}

.perf-stat .perf-val {
    font-weight: 700;
    color: #1a1a2e;
}

.perf-stat .perf-lbl {
    font-size: 0.8rem;
    color: #94a3b8;
}

.see-details {
    font-size: 0.8rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.radar-container {
    height: 180px;
}

.time-filter {
    font-size: 0.75rem;
    color: #64748b;
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    border-radius: 0.25rem;
}

.bar-chart-container {
    height: 140px;
}

.time-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

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

.time-stat .time-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.time-stat .time-lbl {
    font-size: 0.75rem;
    color: #94a3b8;
}

.module-tabs {
    display: flex;
    gap: 0.5rem;
}

.module-tabs .tab {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    color: #64748b;
}

.module-tabs .tab.active {
    background: #6366f1;
    color: white;
}

.exercises {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exercise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #faf7f4;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
}

.exercise-item:hover {
    background: #f1f5f9;
}

.exercise-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.exercise-icon.icon-ent {
    background: #ec4899;
}

.exercise-icon.icon-soft {
    background: #f97316;
}

.exercise-info {
    flex: 1;
}

.exercise-name {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.exercise-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}

.exercise-score {
    text-align: right;
}

.exercise-score .score-label {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
}

.exercise-score .score-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.exercise-score .score-value.high {
    color: #10b981;
}

.exercise-score .score-value.medium {
    color: #f59e0b;
}

.exercise-score .score-value.low {
    color: #ef4444;
}

.empty-exercises {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
}

.empty-exercises .btn-start {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: #6366f1;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-bottom-row {
    display: flex;
    gap: 1.5rem;
    padding: 0 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card-full {
    flex: 1;
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.badge-count {
    font-size: 0.8rem;
    color: #64748b;
    padding: 0.25rem 0.5rem;
    background: #f1f5f9;
    border-radius: 0.25rem;
}

.achievements-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.achievement-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    min-width: 80px;
    opacity: 0.4;
}

.achievement-badge.unlocked {
    opacity: 1;
    background: #fef3c7;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.achievement-badge.unlocked .badge-icon {
    background: #fbbf24;
    color: white;
}

.badge-name {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
}

.recommended-row {
    display: flex;
    gap: 1rem;
}

.recommended-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.recommended-item:hover {
    background: #f1f5f9;
}

.rec-level {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.rec-level.level-1 { background: #10b981; }
.rec-level.level-2 { background: #3b82f6; }
.rec-level.level-3 { background: #f59e0b; }
.rec-level.level-4 { background: #ef4444; }

.rec-name {
    flex: 1;
    font-size: 0.9rem;
    color: #1a1a2e;
    font-weight: 500;
}

.recommended-item svg {
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .dashboard-grid-new {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .card-large,
    .avg-performance,
    .skill-developed,
    .submission-time,
    .exercise-list {
        grid-column: 1;
        grid-row: auto;
    }
    
    .dashboard-bottom-row {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-header-new {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .dashboard-header-new .header-right {
        width: 100%;
        justify-content: stretch;
    }
    
    .header-stats {
        gap: 1rem;
    }
    
    .recommended-row {
        flex-direction: column;
    }
}

/* ============== SKILL PASSPORT SECTION ============== */

.card-compact {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    min-width: 280px;
}

.skill-passport-card .card-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.passport-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.passport-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.passport-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.passport-info {
    display: flex;
    flex-direction: column;
}

.passport-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.95rem;
}

.passport-level {
    font-size: 0.8rem;
    color: #6366f1;
    font-weight: 500;
}

.passport-skills {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.passport-skill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.passport-skill .skill-name {
    font-size: 0.8rem;
    color: #64748b;
    min-width: 80px;
}

.skill-bar-mini {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.skill-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
}

.passport-empty {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    padding: 1rem 0;
}

/* ============== COMMUNITY SKILL BADGE ============== */

.skill-badge-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.skill-badge-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.skill-badge-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.skill-badge-info {
    display: flex;
    flex-direction: column;
}

.skill-badge-name {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.skill-badge-title {
    font-size: 0.75rem;
    color: #64748b;
}

.skill-badge-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-top: 1px dashed #cbd5e1;
    border-bottom: 1px dashed #cbd5e1;
}

.badge-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-stat-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.badge-stat-lbl {
    font-size: 0.7rem;
    color: #64748b;
}

.skill-badge-level {
    text-align: center;
}

.level-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.level-tag.newcomer {
    background: #e2e8f0;
    color: #64748b;
}

.level-tag.rising {
    background: #d1fae5;
    color: #059669;
}

.level-tag.active {
    background: #dbeafe;
    color: #2563eb;
}

.level-tag.expert {
    background: #fef3c7;
    color: #d97706;
}

/* ============== NEW RESULT PAGE LAYOUT ============== */

.result-header-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #3b3b5e 50%, #6366f1 100%);
    padding: 1.5rem 3rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-info h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.task-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.task-name {
    font-size: 0.95rem;
    opacity: 0.95;
}

.task-level {
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.task-level.level-1 { background: #10b981; }
.task-level.level-2 { background: #3b82f6; }
.task-level.level-3 { background: #f59e0b; }
.task-level.level-4 { background: #ef4444; }

.task-module {
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.header-right {
    text-align: right;
}

.score-display-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-ring-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid;
}

.score-ring-small.ring-high { border-color: #10b981; }
.score-ring-small.ring-medium { border-color: #f59e0b; }
.score-ring-small.ring-low { border-color: #ef4444; }

.score-num {
    font-size: 1.5rem;
    font-weight: 800;
}

.score-meta-compact {
    text-align: left;
}

.score-category-compact {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.score-date {
    font-size: 0.75rem;
    opacity: 0.8;
}

.result-container-new {
    padding: 2rem 3rem;
    background: #faf7f4;
    max-width: 1200px;
    margin: 0 auto;
}

.result-top-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.chart-section,
.dimensions-section {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.section-header svg {
    color: #6366f1;
}

.chart-wrapper {
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}

.dimensions-compact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dim-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dim-name {
    width: 140px;
    font-size: 0.8rem;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dim-bar-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dim-bar-bg {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.dim-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.dim-bar-fill.level-4 { background: #10b981; }
.dim-bar-fill.level-3 { background: #3b82f6; }
.dim-bar-fill.level-2 { background: #f59e0b; }
.dim-bar-fill.level-1 { background: #ef4444; }

.dim-level {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    background: #f1f5f9;
    border-radius: 0.25rem;
    color: #64748b;
}

.submission-section {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section-header-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.section-header-toggle:hover {
    background: #faf7f4;
}

.section-header-toggle .header-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.section-header-toggle .header-content svg {
    color: #6366f1;
}

.toggle-icon {
    color: #64748b;
    transition: transform 0.3s;
}

.submission-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submission-content.expanded {
    max-height: 600px;
    overflow-y: auto;
}

.essay-text {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
    white-space: pre-wrap;
}

.feedback-section,
.assignment-section {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feedback-section {
    border-left: 4px solid #6366f1;
}

.assignment-section {
    border-left: 4px solid #f59e0b;
}

.feedback-body,
.assignment-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
}

.content-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 1.25rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-heading:first-child {
    margin-top: 0;
}

.content-heading::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #6366f1;
    border-radius: 2px;
}

.feedback-body p,
.assignment-body p {
    margin: 0.5rem 0;
}

.content-list {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

.content-list li {
    margin: 0.35rem 0;
    line-height: 1.6;
}

.actions-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.action-btn.primary {
    background: #6366f1;
    color: white;
}

.action-btn.primary:hover {
    background: #4f46e5;
}

.action-btn.secondary {
    background: white;
    color: #1a1a2e;
    border: 1px solid #e2e8f0;
}

.action-btn.secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

@media (max-width: 992px) {
    .result-top-row {
        grid-template-columns: 1fr;
    }
    
    .chart-section {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .result-header-new {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .header-right {
        align-self: flex-start;
    }
    
    .result-container-new {
        padding: 1.5rem;
    }
    
    .dim-name {
        width: 100px;
    }
    
    .actions-row {
        flex-direction: column;
    }
    
    .action-btn {
        justify-content: center;
    }
}

/* ============== ADMIN TOPICS PAGE ============== */

.admin-topics-page {
    margin: -2rem;
    background: #e8f4fc;
    min-height: calc(100vh - 60px);
}

.admin-content {
    padding: 2rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-stats-bar {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.admin-stats-bar .stat-item {
    display: flex;
    flex-direction: column;
}

.admin-stats-bar .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
}

.admin-stats-bar .stat-label {
    font-size: 0.8rem;
    color: #64748b;
}

.admin-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.admin-topic-card-new {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.2s;
}

.admin-topic-card-new:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.topic-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.topic-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.topic-status-badge.status-active {
    background: #d1fae5;
    color: #059669;
}

.topic-status-badge.status-inactive {
    background: #fee2e2;
    color: #dc2626;
}

.topic-level {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.topic-level.level-1 { background: #10b981; }
.topic-level.level-2 { background: #3b82f6; }
.topic-level.level-3 { background: #f59e0b; }
.topic-level.level-4 { background: #ef4444; }

.topic-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.topic-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.topic-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.meta-tag.module-entrepreneurship {
    background: #fce7f3;
    color: #be185d;
}

.meta-tag.module-soft_skills {
    background: #ffedd5;
    color: #c2410c;
}

.meta-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.topic-actions-row {
    display: flex;
    gap: 0.75rem;
}

.btn-edit,
.btn-toggle,
.btn-delete {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-edit {
    background: #6366f1;
    color: white;
}

.btn-edit:hover {
    background: #4f46e5;
}

.btn-toggle {
    background: #f1f5f9;
    color: #64748b;
}

.btn-toggle:hover {
    background: #e2e8f0;
}

.btn-delete {
    background: #fee2e2;
    color: #dc2626;
}

.btn-delete:hover {
    background: #fecaca;
}

.empty-state-card {
    background: white;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.empty-state-card svg {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.empty-state-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.empty-state-card p {
    color: #64748b;
    margin: 0 0 1.5rem;
}

.btn-create-first {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-create-first:hover {
    background: #4f46e5;
}

@media (max-width: 768px) {
    .admin-content {
        padding: 1.5rem;
    }
    
    .admin-stats-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .admin-topics-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-actions-row {
        flex-wrap: wrap;
    }
}
