/* Minimal reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; line-height: 1.5; }

:root {
    --font-sans: 'Outfit', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

/* Base */
.app-body {
    min-height: 100vh;
    background: #0f0f12;
    color: #e4e4e7;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 1rem;
    box-sizing: border-box;
}

/* Age gate / 18+ modal */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.age-gate__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.age-gate__modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: #18181b;
    border-radius: 0.75rem;
    border: 1px solid #27272a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.age-gate__rta {
    display: inline-block;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.age-gate__rta:hover {
    opacity: 1;
}

.age-gate__rta img {
    display: block;
    height: 40px;
    width: auto;
}

.age-gate__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fafafa;
}

.age-gate__text {
    font-size: 0.9375rem;
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-gate__btn {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.age-gate__btn--enter {
    background: #a78bfa;
    color: #0f0f12;
}

.age-gate__btn--enter:hover {
    background: #9333ea;
    color: #fff;
}

.age-gate__btn--leave {
    background: transparent;
    color: #71717a;
    border: 1px solid #27272a;
}

.age-gate__btn--leave:hover {
    background: #27272a;
    color: #a1a1aa;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.app-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 15, 18, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #27272a;
}

.app-header__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding-block: 0.75rem 1rem;
}

.app-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15em;
    font-size: 1.25rem;
    flex-shrink: 0;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-logo:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.app-logo__brand {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-logo:hover .app-logo__brand {
    background: linear-gradient(135deg, #c4b5fd 0%, #f472b6 50%, #f9a8d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Search */
.app-search {
    flex: 1;
    min-width: 0;
    max-width: 420px;
    display: flex;
    background: #18181b;
    border-radius: 0.5rem;
    border: 1px solid #27272a;
    overflow: hidden;
}

@media (min-width: 640px) {
    .app-header__inner {
        gap: 1.5rem;
    }

    .app-logo {
        font-size: 1.5rem;
    }
}

.app-search__input {
    flex: 1;
    padding: 0.625rem 1rem;
    background: transparent;
    border: none;
    color: #fafafa;
    font-size: 0.875rem;
    outline: none;
}

.app-search__input::placeholder {
    color: #71717a;
}

.app-search__btn {
    padding: 0.625rem 1rem;
    background: #27272a;
    border: none;
    color: #a1a1aa;
    cursor: pointer;
}

.app-search__btn:hover {
    color: #fafafa;
    background: #3f3f46;
}

.app-search__icon {
    display: block;
}

/* Nav */
.app-nav {
    display: flex;
    gap: 0.5rem;
}

.app-nav__link {
    padding: 0.5rem 1rem;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: color 0.2s, background 0.2s;
}

.app-nav__link:hover {
    color: #fafafa;
    background: #27272a;
}

.app-nav__link--active {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

.app-nav__link--random:hover {
    color: #10b981;
}

/* Main */
.app-main {
    padding-block: 2rem;
    min-height: calc(100vh - 180px);
}

/* Video Grid - 3x3 layout */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Video Card */
.video-card {
    --card-radius: 0.625rem;
    min-width: 0;
    background: #141416;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.video-card__thumb-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.video-card__thumb-link:hover {
    opacity: 0.95;
}

.video-card:hover .video-card__thumb {
    transform: scale(1.05);
}

.video-card__thumb-link:hover .video-card__overlay {
    opacity: 1;
}

.video-card__thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1e;
}

.video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.video-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-card__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.9);
    color: #0f0f12;
    border-radius: 50%;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-card__thumb-link:hover .video-card__play {
    transform: scale(1.08);
    background: #fff;
}

.video-card__duration {
    position: absolute;
    bottom: 0.375rem;
    right: 0.375rem;
    padding: 0.125rem 0.375rem;
    background: rgba(0, 0, 0, 0.85);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 0.25rem;
}

.video-card__views-badge {
    position: absolute;
    bottom: 0.375rem;
    left: 0.375rem;
    padding: 0.125rem 0.375rem;
    background: rgba(0, 0, 0, 0.75);
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
}

.video-card__meta {
    padding: 0.75rem 0.875rem;
}

.video-card__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a78bfa;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.video-card__category:hover {
    color: #c4b5fd;
}

.video-card__title {
    display: -webkit-box;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.375rem;
    color: #f4f4f5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.video-card__title:hover {
    color: #a78bfa;
}

.video-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.video-card__tag {
    font-size: 0.625rem;
    font-weight: 500;
    padding: 0.125rem 0.375rem;
    background: transparent;
    border-radius: 0.25rem;
    color: #71717a;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.video-card__tag:hover {
    color: #a78bfa;
}

/* Page Headers */
/* Breadcrumb */
.breadcrumb-wrap {
    margin-bottom: 1rem;
}

.breadcrumb-wrap ol,
.breadcrumb-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.8125rem;
    color: #71717a;
}

.breadcrumb > .breadcrumb__item {
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
}

.breadcrumb > .breadcrumb__item > a,
.breadcrumb > .breadcrumb__item > span {
    white-space: nowrap;
}

.breadcrumb .breadcrumb__item:last-child .breadcrumb__current {
    max-width: min(280px, 100%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .breadcrumb .breadcrumb__item:last-child .breadcrumb__current {
        max-width: min(420px, 100%);
    }
}

.breadcrumb__link {
    color: #a1a1aa;
    text-decoration: none;
    flex-shrink: 0;
}

.breadcrumb__link:hover {
    color: #a78bfa;
}

.breadcrumb__current {
    color: #e4e4e7;
}

.breadcrumb__sep {
    color: #52525b;
    flex-shrink: 0;
}

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

.page-header__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.sort-tabs {
    display: flex;
    gap: 0.375rem;
    padding: 0.25rem;
    background: #18181b;
    border-radius: 0.5rem;
    border: 1px solid #27272a;
}

.sort-tabs__item {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #a1a1aa;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: color 0.2s, background 0.2s;
}

.sort-tabs__item:hover {
    color: #fafafa;
    background: #27272a;
}

.sort-tabs__item--active {
    color: #fafafa;
    background: #a78bfa;
}

.sort-tabs__item--active:hover {
    background: #9333ea;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    color: #71717a;
    font-size: 0.875rem;
}

.page-intro {
    margin-bottom: 1.5rem;
}

.page-intro p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #a1a1aa;
    margin: 0;
}

.page-intro a {
    color: #a78bfa;
    text-decoration: none;
}

.page-intro a:hover {
    text-decoration: underline;
}

/* Video Detail */
.video-detail {
    max-width: 1200px;
    margin-inline: auto;
    min-width: 0;
}

.video-detail__player-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.video-detail__player-wrap iframe,
.video-detail__embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.video-detail__player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-detail__card {
    padding: 1.25rem;
    background: #141416;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.video-detail__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.video-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #a1a1aa;
}

.video-detail__meta a {
    color: #a78bfa;
    text-decoration: none;
}

.video-detail__meta a:hover {
    text-decoration: underline;
}

.video-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.video-detail__tag {
    padding: 0.375rem 0.75rem;
    background: #27272a;
    border-radius: 0.375rem;
    color: #e4e4e7;
    text-decoration: none;
    font-size: 0.8125rem;
}

.video-detail__tag:hover {
    background: #3f3f46;
}

/* Related */
.related-section {
    margin-top: 2rem;
}

.related-section__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Categories Grid */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 640px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.category-card {
    display: block;
    background: #141416;
    border-radius: 0.625rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(167, 139, 250, 0.25);
}

.category-card:hover .category-card__thumb {
    transform: scale(1.06);
}

.category-card__thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1e;
}

.category-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-card__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1f1f23 0%, #18181b 100%);
}

.category-card__thumb-icon {
    font-size: 2.5rem;
    color: rgba(167, 139, 250, 0.4);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    pointer-events: none;
}

.category-card__count-badge {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.85);
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 0.25rem;
}

.category-card__meta {
    padding: 0.875rem 1rem;
}

.category-card__name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

/* Tags Grid */
.tag-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .tag-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 640px) {
    .tag-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tag-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tag-card {
    display: block;
    padding: 1.25rem 1.5rem;
    background: #18181b;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tag-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.06);
    transform: translateY(-1px);
}

.tag-card__name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.tag-card__count {
    font-size: 0.8125rem;
    color: #a1a1aa;
}

/* Sidebar Card - Wrapper for categories & tags */
.sidebar-card {
    padding: 1rem;
    background: #141416;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.sidebar-card__title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
}

.sidebar-card__grid {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sidebar-card__item {
    display: block;
    padding: 0.5rem 0.75rem;
    background: #1a1a1e;
    border-radius: 0.375rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.sidebar-card__item:hover {
    background: #252528;
}

.sidebar-card__item-name {
    display: block;
    font-weight: 500;
    font-size: 0.8125rem;
}

.sidebar-card__item-count {
    font-size: 0.6875rem;
    color: #71717a;
}

.sidebar-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.sidebar-card__tag {
    display: block;
    padding: 0.375rem 0.625rem;
    background: #1a1a1e;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #a1a1aa;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.sidebar-card__tag:hover {
    background: #252528;
    color: #f4f4f5;
}

/* Pagination */
.pagination {
    margin-top: 2.5rem;
    overflow-x: auto;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: inline-block;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.5rem 0.625rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.375rem;
    color: #e4e4e7;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pagination-link:hover {
    background: #27272a;
    border-color: rgba(255, 255, 255, 0.12);
}

.pagination-link--active {
    background: #a78bfa;
    border-color: #a78bfa;
    color: #0f0f12;
    cursor: default;
}

.pagination-item--disabled .pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.app-footer {
    margin-top: auto;
    padding-block: 2.5rem 1.5rem;
    border-top: 1px solid #27272a;
    background: #0a0a0c;
}

.app-footer__inner {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #27272a;
}

@media (min-width: 768px) {
    .app-footer__inner {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.app-footer__brand {
    max-width: 360px;
}

.app-footer__logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.1em;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
}

.app-footer__logo:hover {
    transform: scale(1.02);
}

.app-footer__logo .app-logo__brand {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-footer__logo:hover .app-logo__brand {
    background: linear-gradient(135deg, #c4b5fd 0%, #f472b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.app-footer__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #71717a;
}

.app-footer__page-desc {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #52525b;
    margin-top: 0.75rem;
}

.app-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-footer__links a {
    font-size: 0.875rem;
    color: #a1a1aa;
    text-decoration: none;
}

.app-footer__links a:hover {
    color: #a78bfa;
}

.app-footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1aa;
    margin-bottom: 0.25rem;
}

.app-footer__bottom {
    padding-top: 1.5rem;
}

.app-footer__copyright {
    text-align: center;
    font-size: 0.8125rem;
    color: #52525b;
}

/* Page Content (DMCA, Copyright, Contact) */
.page-content {
    max-width: 720px;
    margin-inline: auto;
    padding-block: 1rem 3rem;
}

.page-content__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-content__body {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #d4d4d8;
}

.page-content__body h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.page-content__body p {
    margin-bottom: 1rem;
}

.page-content__body ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content__body li {
    margin-bottom: 0.375rem;
}

.page-content__body a {
    color: #a78bfa;
    text-decoration: none;
}

.page-content__body a:hover {
    text-decoration: underline;
}

.page-content__note {
    padding: 1rem;
    background: #18181b;
    border-radius: 0.5rem;
    border-left: 3px solid #a78bfa;
    font-size: 0.875rem;
    color: #a1a1aa;
}

/* Home Layout */
.home-layout {
    display: grid;
    gap: 1.5rem;
    min-width: 0;
}

@media (min-width: 1024px) {
    .home-layout {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }
}

.home-main {
    min-width: 0;
}

.home-sidebar {
    min-width: 0;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state {
    grid-column: 1 / -1;
}

.empty-state__text {
    color: #a1a1aa;
    font-size: 1rem;
}

.section-title {
    font-size: 1.125rem;
}
