@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.biobot-root * { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
.hero-video-inline-player {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
    /* Boş iframe / video, poster altında olsa da bazı tarayıcılarda tıklamayı yutuyor */
    pointer-events: none;
}
.hero-video-card--playing .hero-video-inline-player {
    pointer-events: auto;
}
.hero-video-inline-player video,
.hero-video-inline-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.hero-video-inline-player video {
    object-fit: cover;
}
.hero-video-tap-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: auto;
}
.hero-video-card--playing .hero-video-tap-layer {
    display: none;
}
.hero-video-card .hero-video-poster-layer {
    transform: scale(1.02);
}

/* Challenge detail — editorial + discussion */
.challenge-detail-page {
    --ch-lane: #52B788;
    padding-top: 64px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.challenge-detail-page::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -15%;
    width: 55%;
    max-width: 720px;
    height: 70%;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--ch-lane) 18%, transparent) 0%, transparent 68%);
    pointer-events: none;
}
.challenge-detail-page::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.challenge-detail-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.challenge-detail-breadcrumb-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.challenge-detail-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    margin-bottom: 0;
    transition: color 0.2s;
}
.challenge-detail-breadcrumb-muted {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}
.challenge-detail-breadcrumb:hover {
    color: rgba(255, 255, 255, 0.55);
}
.challenge-guest-cta {
    margin-bottom: 28px;
    border-radius: 16px;
    padding: 20px 22px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--guest-lane, #52b788) 12%, rgba(255, 255, 255, 0.03)) 0%, rgba(8, 14, 8, 0.65) 100%);
    border: 1px solid color-mix(in srgb, var(--guest-lane, #52b788) 35%, rgba(255, 255, 255, 0.08));
    scroll-margin-top: 88px;
}
.challenge-guest-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.challenge-guest-cta-copy {
    flex: 1;
    min-width: min(100%, 280px);
}
.challenge-guest-cta-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--guest-lane, #52b788) 90%, #fff);
    margin-bottom: 6px;
}
.challenge-guest-cta-title {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}
.challenge-guest-cta-title strong {
    color: #95d5b2;
    font-weight: 800;
}
.challenge-guest-cta-sub {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45);
    max-width: 36rem;
}
.challenge-guest-cta-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 340px;
    flex-shrink: 0;
}
.challenge-guest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.2;
    transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}
.challenge-guest-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.challenge-guest-btn--primary {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
}
.challenge-guest-btn--outline {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.discussion-guest-hint {
    margin-bottom: 28px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.discussion-guest-hint-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.48);
}
.discussion-guest-hint-anchor {
    color: #52b788;
    font-weight: 700;
    text-decoration: none;
}
.discussion-guest-hint-anchor:hover {
    text-decoration: underline;
}
.sidebar-muted--guest-apply {
    margin-bottom: 0;
    line-height: 1.65;
}

.challenge-detail-hero {
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 14, 8, 0.92) 100%);
    border: 1px solid color-mix(in srgb, var(--ch-lane) 35%, rgba(255, 255, 255, 0.06));
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.35) inset,
        0 24px 80px rgba(0, 0, 0, 0.35);
    margin-bottom: 32px;
}
.challenge-detail-hero-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.challenge-detail-lane-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ch-lane) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--ch-lane) 40%, transparent);
    font-size: 12px;
    font-weight: 700;
    color: var(--ch-lane);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.challenge-detail-hero h1 {
    font-size: clamp(28px, 4.2vw, 42px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 16px;
}
.challenge-detail-lede {
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(17px, 2.1vw, 20px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    font-style: italic;
    margin: 0 0 22px;
    max-width: 52rem;
}
.challenge-detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.challenge-detail-meta-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.challenge-detail-meta-item strong {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}
.challenge-detail-meta-goal {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: #52b788;
}
.challenge-detail-diff {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--ch-lane) 16%, transparent);
    color: var(--ch-lane);
    border: 1px solid color-mix(in srgb, var(--ch-lane) 35%, transparent);
}
.challenge-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}
.discussion-panel-wrap {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.discussion-panel-wrap .discussion-panel {
    margin-top: 0;
}
.challenge-detail-main {
    min-width: 0;
}
.challenge-sidebar-card {
    border-radius: 16px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    position: sticky;
    top: 88px;
}
.challenge-sidebar-card h2 {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
.challenge-sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}
.challenge-sidebar-stat:last-of-type {
    border-bottom: none;
}
.challenge-sidebar-stat span:last-child {
    font-weight: 700;
    color: #52b788;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}
.discussion-panel {
    margin-top: 48px;
    border-radius: 20px;
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(8, 14, 8, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.discussion-panel-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.discussion-panel-header h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}
.discussion-panel-header p {
    margin: 6px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 36rem;
    line-height: 1.6;
}
.discussion-panel-header code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.35);
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #95d5b2;
}
.discussion-composer {
    margin-bottom: 32px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(82, 183, 136, 0.2);
}
.discussion-composer label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.discussion-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.discussion-input:focus {
    outline: none;
    border-color: rgba(82, 183, 136, 0.45);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
}
.discussion-btn-primary {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.discussion-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.discussion-btn-ghost:hover {
    color: #52b788;
    border-color: rgba(82, 183, 136, 0.35);
}
.thread-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.thread-comment {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.thread-comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.thread-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    font-family: "JetBrains Mono", monospace;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.35), rgba(45, 106, 79, 0.5));
    border: 1px solid rgba(82, 183, 136, 0.25);
}
.thread-comment-body {
    min-width: 0;
}
.thread-comment-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
    margin-bottom: 10px;
}
.thread-author {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.thread-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    font-family: "JetBrains Mono", monospace;
}
.thread-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.62);
    white-space: pre-wrap;
    margin: 0 0 14px;
}
.thread-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.thread-replies-wrap {
    margin-top: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.thread-replies-summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    user-select: none;
    transition: color 0.15s ease, background 0.15s ease;
}
.thread-replies-summary::-webkit-details-marker {
    display: none;
}
.thread-replies-summary:hover {
    color: #52b788;
    background: rgba(82, 183, 136, 0.06);
}
.thread-replies-summary-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.thread-replies-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    opacity: 0.7;
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}
.thread-replies-wrap[open] .thread-replies-chevron {
    transform: rotate(0deg);
}
.thread-replies-wrap .thread-replies {
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.thread-replies {
    margin-top: 8px;
    padding-left: 12px;
    border-left: 2px solid color-mix(in srgb, var(--ch-lane) 45%, transparent);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.thread-comment--reply {
    padding: 18px 0 18px 8px;
    grid-template-columns: 36px 1fr;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.thread-comment--reply:first-child {
    border-top: none;
}
.thread-comment--reply .thread-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 10px;
}
.thread-comment--reply .thread-text {
    font-size: 14px;
}
.reply-composer {
    display: none;
    margin-top: 14px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.reply-composer.is-open {
    display: block;
}
.reply-composer .discussion-input {
    min-height: 88px;
    font-size: 14px;
}
.discussion-empty {
    text-align: center;
    padding: 48px 24px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}
.discussion-empty p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
}

.discussion-flash-success {
    font-size: 14px;
    color: #52b788;
    margin: -12px 0 20px;
    font-weight: 600;
}
.discussion-flash-success--sm {
    margin: 0 0 14px;
}
.discussion-flash-error {
    font-size: 13px;
    color: #f87171;
    margin-top: 8px;
}
.discussion-flash-error--sm {
    margin-top: 6px;
}
.discussion-btn-primary--full {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}
.discussion-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    box-sizing: border-box;
    min-height: 44px;
}
.discussion-composer--guest {
    border-color: rgba(255, 255, 255, 0.08);
}
.discussion-guest-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 14px;
    line-height: 1.65;
}
.biobot-btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}
.biobot-btn-row--equal .biobot-btn-equal {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    text-align: center;
}
.biobot-btn-row--stack {
    flex-direction: column;
}
.biobot-btn-equal {
    min-height: 44px;
    box-sizing: border-box;
}
.sidebar-apply-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}
.discussion-input--sidebar {
    min-height: 100px;
    font-size: 13px;
}
.sidebar-status-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.65;
}
.sidebar-status-pending {
    color: #fbbf24;
}
.sidebar-status-ok {
    color: #52b788;
}
.sidebar-muted {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 14px;
    line-height: 1.6;
}
.challenge-sidebar-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.challenge-sidebar-stat-lane {
    color: var(--ch-lane) !important;
}
.challenge-sidebar-jump {
    display: block;
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #52b788;
    text-decoration: none;
}

.thread-author-link {
    text-decoration: none;
    color: #95d5b2;
}
.thread-author-link:hover {
    text-decoration: underline;
}
.thread-md-content {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.thread-md-content :first-child {
    margin-top: 0;
}
.thread-md-content :last-child {
    margin-bottom: 0;
}
.thread-md-content p {
    margin: 0 0 12px;
}
.thread-md-content h1,
.thread-md-content h2,
.thread-md-content h3 {
    color: #fff;
    font-weight: 800;
    margin: 16px 0 10px;
    line-height: 1.25;
}
.thread-md-content h1 {
    font-size: 1.35rem;
}
.thread-md-content h2 {
    font-size: 1.2rem;
}
.thread-md-content h3 {
    font-size: 1.05rem;
}
.thread-md-content ul,
.thread-md-content ol {
    margin: 0 0 12px;
    padding-left: 1.35rem;
}
.thread-md-content li {
    margin-bottom: 4px;
}
.thread-md-content a {
    color: #52b788;
    font-weight: 600;
    text-decoration: none;
}
.thread-md-content a:hover {
    text-decoration: underline;
}
.thread-md-content code {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.88em;
    background: rgba(0, 0, 0, 0.45);
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.thread-md-content pre {
    margin: 0 0 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    font-size: 13px;
}
.thread-md-content pre code {
    background: none;
    border: 0;
    padding: 0;
}
.thread-md-content blockquote {
    margin: 0 0 12px;
    padding: 8px 0 8px 14px;
    border-left: 3px solid rgba(82, 183, 136, 0.45);
    color: rgba(255, 255, 255, 0.5);
}
.thread-md-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 14px;
}
.thread-md-content th,
.thread-md-content td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    text-align: left;
}
.thread-comment--nested {
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-left: min(calc(var(--thread-depth, 1) * 10px), 72px);
    grid-template-columns: 36px 1fr;
}
.thread-comment--nested .thread-avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 10px;
}
.thread-comment--nested .thread-md-content {
    font-size: 14px;
}

.dashboard-page {
    padding-top: 72px;
    padding-bottom: 80px;
    min-height: 70vh;
}
.dashboard-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.dashboard-inner--narrow {
    max-width: 640px;
}
.dashboard-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}
.dashboard-header h1 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.03em;
}
.dashboard-header p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.6;
    max-width: 36rem;
}
.dashboard-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.dashboard-banner {
    margin-bottom: 20px !important;
}
.dashboard-filters {
    margin-bottom: 28px;
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.dashboard-filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
.dashboard-filter-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}
.dashboard-input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}
.dashboard-filter-actions {
    max-width: 420px;
}
.dashboard-challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.dashboard-challenge-card {
    border-radius: 16px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid color-mix(in srgb, var(--lane, #52b788) 28%, rgba(255, 255, 255, 0.08));
    display: flex;
    flex-direction: column;
    min-height: 280px;
}
.dashboard-challenge-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.dashboard-lane-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--lane, #52b788);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.dashboard-diff {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--lane, #52b788) 14%, transparent);
    color: var(--lane, #52b788);
}
.dashboard-challenge-card h2 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}
.dashboard-challenge-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0 0 10px;
    flex: 1;
}
.dashboard-challenge-goal {
    font-size: 11px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 600;
    color: #52b788;
    margin: 0 0 14px;
}
.dashboard-challenge-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.dashboard-challenge-status {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
}
.status-none {
    color: rgba(255, 255, 255, 0.35);
}
.status-pending {
    color: #fbbf24;
}
.status-ok {
    color: #52b788;
}
.status-rejected {
    color: #f87171;
}
.dashboard-card-actions {
    width: 100%;
}
.dashboard-inline-form {
    flex: 1;
    min-width: 140px;
    margin: 0;
}
.dashboard-inline-form button {
    width: 100%;
}
.dashboard-waiting,
.dashboard-done {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    min-height: 44px;
    padding: 0 12px;
}
.dashboard-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 15px;
}
.dashboard-pagination {
    margin-top: 32px;
}
.dashboard-pagination .pagination {
    justify-content: center;
    margin-bottom: 0;
}
.dashboard-pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
}
.dashboard-pagination .page-item.active .page-link {
    background: #2d6a4f;
    border-color: #40916c;
    color: #fff;
}
.dashboard-profile-card,
.public-profile-card {
    padding: 24px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.public-profile-handle {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    color: #52b788;
    margin: 0 0 8px;
}
.public-profile-card h1 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.notification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notification-item {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.notification-item--unread {
    background: rgba(82, 183, 136, 0.04);
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 12px;
    border-bottom-color: transparent;
}
.notification-body {
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}
.notification-preview {
    margin: 8px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.notification-time {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-family: "JetBrains Mono", monospace;
}
.notification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .desktop-nav { display: none !important; }
    .mobile-menu-btn { display: block !important; }
    .hero-bottom, .about-grid, .hw-grid, .bottom-grid, .story-grid, .founders-grid { grid-template-columns: 1fr !important; }
    .challenge-detail-grid { grid-template-columns: 1fr !important; }
    .challenge-sidebar-card { position: static; }
    .challenge-guest-cta-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .charts-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; }
    .roles-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .challenges-grid { grid-template-columns: 1fr !important; }
    .personas-grid { grid-template-columns: 1fr !important; }
    .dashboard-filter-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr !important; }
}
