/* ================================================
   vtubermanager.com - Dark Academia VTuber Management
   Colors: #1a1a2e (base), #4a90d9 (blue), #f5f0e8 (off-white),
           #e8b84b (gold), #6c757d (gray)
   Fonts: Space Mono (monospace), Inter (sans)
   ================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: #1a1a2e;
    color: #f5f0e8;
    overflow-x: hidden;
    position: relative;
}

/* --- Retro Pattern Overlay --- */
#retro-pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(45deg, #4a90d9 25%, transparent 25%),
        linear-gradient(-45deg, #4a90d9 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #4a90d9 75%),
        linear-gradient(-45deg, transparent 75%, #4a90d9 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

/* --- Navigation --- */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 144, 217, 0.15);
    transition: background 0.3s ease;
}

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

.nav-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.logo-bracket {
    color: #4a90d9;
}

.logo-text {
    color: #e8b84b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e8b84b;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f5f0e8;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5f0e8;
    transition: all 0.3s ease;
}

/* --- Parallax Sections --- */
.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
}

/* --- Abstract Shapes --- */
.abstract-shape {
    position: absolute;
    opacity: 0.06;
}

.shape-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid #4a90d9;
    top: 10%;
    right: -5%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-diamond {
    width: 200px;
    height: 200px;
    border: 2px solid #e8b84b;
    transform: rotate(45deg);
    top: 60%;
    left: 5%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-hexagon {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, transparent 33%, #4a90d9 33%, #4a90d9 34%, transparent 34%,
                transparent 66%, #4a90d9 66%, #4a90d9 67%, transparent 67%);
    top: 20%;
    left: 15%;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(232, 184, 75, 0.08);
    top: 40%;
    right: 10%;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.shape-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(74, 144, 217, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 144, 217, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.shape-lines {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(232, 184, 75, 0.03) 40px,
        rgba(232, 184, 75, 0.03) 41px
    );
}

.shape-dots {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(74, 144, 217, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-2deg); }
}

/* --- Hero Section --- */
#hero {
    padding-top: 64px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0d0d1a 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-terminal {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(74, 144, 217, 0.3);
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.terminal-header {
    background: rgba(74, 144, 217, 0.1);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(74, 144, 217, 0.15);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-title {
    font-size: 0.7rem;
    color: #6c757d;
    margin-left: auto;
}

.terminal-body {
    padding: 1rem 1.25rem;
}

.terminal-body p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #6c757d;
}

.type-line {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.type-line.visible {
    opacity: 1;
    transform: translateX(0);
}

.prompt {
    color: #4a90d9;
    margin-right: 0.25rem;
}

.cmd {
    color: #f5f0e8;
}

.highlight,
.gold-text {
    color: #e8b84b;
}

.hero-title {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #f5f0e8;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #6c757d;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #e8b84b;
    color: #e8b84b;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(232, 184, 75, 0.1);
    transition: left 0.3s ease;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    box-shadow: 0 0 20px rgba(232, 184, 75, 0.2);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* --- Section Common --- */
.section-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    width: 100%;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: #4a90d9;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f5f0e8;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 2px;
    background: #e8b84b;
}

/* --- Talent Categories --- */
.talent-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 1px solid rgba(74, 144, 217, 0.3);
    color: #6c757d;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    border-color: #e8b84b;
    color: #e8b84b;
    background: rgba(232, 184, 75, 0.05);
}

/* --- Talent Grid --- */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.talent-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(74, 144, 217, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.talent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4a90d9, #e8b84b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.talent-card:hover {
    border-color: rgba(74, 144, 217, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.talent-card:hover::before {
    opacity: 1;
}

.talent-card.hidden {
    display: none;
}

.card-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.talent-avatar {
    width: 140px;
    height: 140px;
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pulse-live {
    background: rgba(40, 200, 64, 0.15);
    border: 1px solid rgba(40, 200, 64, 0.3);
}

.pulse-live .status-dot {
    background: #28c840;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.pulse-live .status-text {
    color: #28c840;
}

.status-offline {
    background: rgba(108, 117, 125, 0.15);
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.status-offline .status-dot {
    background: #6c757d;
}

.status-offline .status-text {
    color: #6c757d;
}

.status-scheduled {
    background: rgba(232, 184, 75, 0.15);
    border: 1px solid rgba(232, 184, 75, 0.3);
}

.status-scheduled .status-dot {
    background: #e8b84b;
    animation: pulseDot 2s ease-in-out infinite;
}

.status-scheduled .status-text {
    color: #e8b84b;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.card-info {
    padding: 1.25rem;
}

.talent-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.talent-type {
    font-size: 0.7rem;
    color: #4a90d9;
    letter-spacing: 0.12em;
}

.talent-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(74, 144, 217, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-label {
    font-size: 0.6rem;
    color: #6c757d;
    letter-spacing: 0.15em;
}

.stat-value {
    font-size: 0.85rem;
    color: #e8b84b;
    font-weight: 700;
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(74, 144, 217, 0.1);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e8b84b;
    transition: width 0.4s ease;
}

.service-card:hover {
    border-color: rgba(74, 144, 217, 0.25);
    transform: translateY(-2px);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-name {
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.service-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-metrics {
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 144, 217, 0.1);
}

.metric {
    font-size: 0.75rem;
    color: #4a90d9;
    letter-spacing: 0.1em;
}

/* --- Status Dashboard --- */
.status-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.dashboard-panel {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(74, 144, 217, 0.12);
    border-radius: 4px;
    overflow: hidden;
}

.panel-main {
    grid-column: 1 / -1;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(74, 144, 217, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.panel-title {
    font-size: 0.7rem;
    color: #6c757d;
    letter-spacing: 0.15em;
}

.panel-time {
    font-size: 0.8rem;
    color: #4a90d9;
    font-weight: 700;
}

.panel-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pulse-active {
    background: #28c840;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(74, 144, 217, 0.1);
}

.dash-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: rgba(26, 26, 46, 0.8);
    text-align: center;
}

.dash-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #e8b84b;
    margin-bottom: 0.5rem;
}

.pulse-attention {
    animation: pulseAttention 2s ease-in-out infinite;
}

@keyframes pulseAttention {
    0%, 100% { color: #e8b84b; text-shadow: 0 0 0 transparent; }
    50% { color: #f0c860; text-shadow: 0 0 20px rgba(232, 184, 75, 0.4); }
}

.dash-stat-label {
    font-size: 0.65rem;
    color: #6c757d;
    letter-spacing: 0.15em;
}

/* --- Activity Log --- */
.activity-log {
    padding: 1rem;
    max-height: 280px;
    overflow-y: auto;
}

.log-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(74, 144, 217, 0.06);
    transition: background 0.2s ease;
}

.log-entry:hover {
    background: rgba(74, 144, 217, 0.05);
}

.log-time {
    font-size: 0.7rem;
    color: #4a90d9;
    white-space: nowrap;
    min-width: 65px;
}

.log-event {
    font-size: 0.75rem;
    color: #f5f0e8;
}

.event-live { color: #28c840; }
.event-milestone { color: #e8b84b; }
.event-collab { color: #4a90d9; }
.event-alert { color: #ff5f57; }

/* --- Chart --- */
.chart-container {
    padding: 1.5rem;
    height: 250px;
    position: relative;
}

#viewer-chart {
    width: 100%;
    height: 100%;
}

/* --- Contact Section --- */
#contact {
    background: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-terminal {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(74, 144, 217, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.contact-terminal .terminal-body p {
    font-size: 0.8rem;
    line-height: 2;
    color: #f5f0e8;
}

.contact-terminal .prompt {
    color: #e8b84b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.7rem;
    color: #4a90d9;
    letter-spacing: 0.15em;
}

.form-input {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(74, 144, 217, 0.2);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    color: #f5f0e8;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: #6c757d;
}

.form-input:hover,
.form-input:focus {
    border-color: rgba(232, 184, 75, 0.4);
    outline: none;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: #1a1a2e;
    color: #f5f0e8;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(232, 184, 75, 0.08);
    border: 1px solid #e8b84b;
    color: #e8b84b;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: rgba(232, 184, 75, 0.15);
    box-shadow: 0 0 20px rgba(232, 184, 75, 0.15);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-arrow {
    transform: translateX(4px);
}

/* --- Footer --- */
#footer {
    border-top: 1px solid rgba(74, 144, 217, 0.1);
    background: rgba(13, 13, 26, 0.8);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand .logo-bracket { font-size: 1.25rem; }
.footer-brand .logo-text { font-size: 1.25rem; }

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
}

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e8b84b;
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 144, 217, 0.08);
}

.footer-copy p {
    font-size: 0.7rem;
    color: #6c757d;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 217, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 144, 217, 0.5);
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Menu --- */
.nav-links.mobile-open {
    display: flex;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .status-dashboard {
        grid-template-columns: 1fr;
    }

    .panel-main {
        grid-column: 1;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(74, 144, 217, 0.15);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

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

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

    .talent-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .talent-categories {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }
}
