/* ============================================
   GAME DESIGN DOCUMENT - MAIN STYLESHEET
   ============================================ */

:root {
    --primary: #1E3A5F;
    --primary-light: #2E5077;
    --primary-dark: #152a45;
    --secondary: #4A90D9;
    --accent: #00D4FF;
    --accent-glow: rgba(0, 212, 255, 0.3);
    
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    --info: #3498DB;
    
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --bg-code: #1e1e2e;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(74, 144, 217, 0.5);
    
    --gradient-primary: linear-gradient(135deg, #1E3A5F 0%, #2E5077 100%);
    --gradient-accent: linear-gradient(135deg, #4A90D9 0%, #00D4FF 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(74, 144, 217, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(30, 58, 95, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 64px;
    animation: float 3s ease-in-out infinite;
}

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

.title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px var(--accent-glow);
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.version-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.version {
    background: var(--gradient-primary);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--text-primary);
}

/* ============================================
   PART SECTIONS
   ============================================ */
.part-section {
    padding: 60px 0;
}

.part-header {
    text-align: center;
    margin-bottom: 50px;
}

.part-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.part-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.part-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   CARD GRID
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--bg-card-hover);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.card-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-normal);
}

.card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Technical Cards */
.card-technical {
    border-left: 3px solid var(--secondary);
}

.card-technical:hover {
    border-left-color: var(--accent);
}

/* Featured Card */
.card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(74, 144, 217, 0.2) 100%);
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .card-featured {
        grid-column: span 1;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

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

/* ============================================
   PAGE LAYOUT (untuk halaman detail)
   ============================================ */
.page-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    overflow-y: auto;
    z-index: 100;
    padding: 20px 0;
}

.sidebar-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.sidebar-header a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.sidebar-header .logo {
    font-size: 1.5rem;
}

.sidebar-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0 15px;
}

.nav-section {
    margin-bottom: 25px;
}

.nav-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 0 10px;
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.nav-link .icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Main Content */
.main-content-page {
    margin-left: 280px;
    flex: 1;
    padding: 40px 60px;
    max-width: calc(100% - 280px);
}

/* Page Header */
.page-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.page-header .breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.page-header .breadcrumb a:hover {
    color: var(--accent);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-header h1 .icon {
    font-size: 2.5rem;
}

.page-header .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
}

/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h2::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.content-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-primary);
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

thead {
    background: var(--gradient-primary);
}

th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

td {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

tbody tr {
    transition: background var(--transition-fast);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Code Blocks */
.code-block {
    background: var(--bg-code);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin: 20px 0;
    overflow-x: auto;
    border: 1px solid var(--border-color);
}

.code-block pre {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    white-space: pre-wrap; /* Memastikan whitespace dipertahankan */
    word-wrap: break-word; /* Jika perlu wrap di layar kecil */
}

.code-block code {
    display: block; /* Agar tidak inline */
    padding: 0;
}

.code-block .comment {
    color: #6a9955;
}

.code-block .keyword {
    color: #569cd6;
}

.code-block .string {
    color: #ce9178;
}

.code-block .number {
    color: #b5cea8;
}

.code-block .function {
    color: #dcdcaa;
}

code {
    font-family: 'Fira Code', 'Consolas', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.diagram {
    font-family: 'Fira Code', Consolas, Monaco, 'Courier New', monospace;
    white-space: pre-wrap;        /* Pertahankan spasi & baris baru, tapi wrap jika perlu */
    /* atau gunakan `white-space: pre;` jika tidak ingin wrap sama sekali */
    tab-size: 4;
    line-height: 1.5;
    background: var(--bg-code);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    color: #e0e0e0;
    overflow-x: auto;
    margin: 20px 0;
}

/* Info Boxes */
.info-box {
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid;
}

.info-box.info {
    background: rgba(52, 152, 219, 0.1);
    border-color: var(--info);
}

.info-box.success {
    background: rgba(39, 174, 96, 0.1);
    border-color: var(--success);
}

.info-box.warning {
    background: rgba(243, 156, 18, 0.1);
    border-color: var(--warning);
}

.info-box.danger {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--danger);
}

.info-box-title {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box p {
    margin: 0;
}

/* Lists */
ul, ol {
    padding-left: 25px;
    margin: 15px 0;
}

li {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

li::marker {
    color: var(--accent);
}

/* Stat Cards */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.tag-accent {
    background: var(--gradient-accent);
    color: var(--bg-dark);
}

.tag-success {
    background: rgba(39, 174, 96, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.tag-warning {
    background: rgba(243, 156, 18, 0.2);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.tag-danger {
    background: rgba(231, 76, 60, 0.2);
    color: var(--danger);
    border: 1px solid var(--danger);
}

/* Navigation Footer */
.page-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.page-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    max-width: 45%;
}

.page-nav a:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
}

.page-nav .prev {
    text-align: left;
}

.page-nav .next {
    text-align: right;
    margin-left: auto;
}

.page-nav .nav-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.page-nav .nav-title {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content-page {
        margin-left: 0;
        max-width: 100%;
        padding: 30px 20px;
    }

    .page-nav {
        flex-direction: column;
        gap: 15px;
    }

    .page-nav a {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

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

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

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Formula Display */
.formula {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(74, 144, 217, 0.1) 100%);
    border: 1px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    margin: 20px 0;
    font-family: 'Fira Code', monospace;
    font-size: 1rem;
    text-align: center;
}

.formula-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.formula-content {
    color: var(--accent);
    font-weight: 500;
}

/* Example Box */
.example-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    margin: 20px 0;
}

.example-box h4 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.example-box h4::before {
    content: '💡';
}

/* Collapsible Sections */
.collapsible {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 15px 0;
    overflow: hidden;
}

.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    background: var(--bg-card);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.collapsible-header:hover {
    background: var(--bg-card-hover);
}

.collapsible-header h4 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.collapsible-icon {
    transition: transform var(--transition-normal);
}

.collapsible.active .collapsible-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.collapsible.active .collapsible-content {
    padding: 25px;
    max-height: 2000px;
}

/* Race Cards */
.race-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

@media (max-width: 900px) {
    .race-grid {
        grid-template-columns: 1fr;
    }
}

.race-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.race-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.race-card.accretia::before {
    background: linear-gradient(90deg, #E74C3C, #C0392B);
}

.race-card.bellato::before {
    background: linear-gradient(90deg, #3498DB, #2980B9);
}

.race-card.cora::before {
    background: linear-gradient(90deg, #9B59B6, #8E44AD);
}

.race-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg);
}

.race-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.race-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.race-card .concept {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.race-card .lore {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
}

.race-bonus {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.race-bonus h4 {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.race-bonus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.race-bonus li {
    color: var(--success);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Class Cards */
.class-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 25px 0;
}

.class-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.class-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
}

.class-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.class-info .role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
}

.class-info .description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 8px;
}

.class-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.class-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

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

.class-stat .stars {
    color: var(--warning);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.class-skills h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.skill-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.skill-item .skill-icon {
    font-size: 1.5rem;
}

.skill-item .skill-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.skill-item .skill-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}
