/*
Theme Name: 바이비트 거래소 테마
Theme URI: https://bybitexchange.manna-plus.kr
Description: 바이비트 거래소 전용 테마 - 오렌지 그라데이션, 매거진 스타일, 글래스 카드
Author: Manna Plus
Author URI: https://manna-plus.kr
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bybitexchange-theme
*/

/* Google Fonts - Nanum Gothic */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-color: #F59E0B;
    --primary-hover: #D97706;
    --primary-light: #FCD34D;
    --accent-color: #EF4444;
    --bg-dark: #0F172A;
    --bg-dark-secondary: #1E293B;
    --bg-dark-tertiary: #334155;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Nanum Gothic', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --border-radius: 20px;
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main) !important;
    background: var(--bg-dark) !important;
    color: var(--text-light) !important;
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Blob/Wave Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
    animation: blobMove 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -20%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(217, 119, 6, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -2;
    animation: blobMove 25s ease-in-out infinite reverse;
}

@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main) !important;
    color: var(--text-light) !important;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Top Banner */
.tethermax-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    padding: 0.875rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.tethermax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.tethermax-banner a {
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
}

/* Header - Center Logo */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-branding {
    text-align: center;
}

.site-title {
    color: var(--text-light) !important;
    font-weight: 800;
    font-size: 1.75rem;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation - Single Row */
.main-navigation {
    width: 100%;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0.25rem;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    color: var(--text-muted) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}

.primary-menu a:hover {
    color: var(--text-light) !important;
    background: rgba(245, 158, 11, 0.2);
}

.primary-menu .current-menu-item a,
.primary-menu .current_page_item a {
    color: var(--bg-dark) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

/* Header CTA */
.header-cta {
    margin-top: 0.5rem;
}

.header-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.header-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

/* Main Content */
main, .site-content {
    min-height: calc(100vh - 300px);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 80px rgba(245, 158, 11, 0.15);
}

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

/* Benefits Grid */
.benefits-section {
    padding: 6rem 0;
}

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

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

.benefit-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: all 0.4s ease;
    animation: antiGravityFloat 6s ease-in-out infinite;
}

.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: 1s; }
.benefit-card:nth-child(3) { animation-delay: 2s; }
.benefit-card:nth-child(4) { animation-delay: 3s; }

.benefit-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.2);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-light) !important;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Anti-Gravity Floating Animation */
@keyframes antiGravityFloat {
    0%, 100% { transform: translateY(0px); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(-4px); }
    75% { transform: translateY(-12px); }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.btn-underline {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
}

.btn-underline:hover {
    color: var(--primary-light) !important;
    border-color: var(--primary-light);
}

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

/* Blog Page */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.blog-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Posts Grid - Magazine Style */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

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

.post-card {
    background: transparent;
    border: none;
}

.post-card-inner {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover .post-card-inner {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 80px rgba(245, 158, 11, 0.15);
}

.post-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark-tertiary));
}

.post-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    color: var(--primary-color);
    opacity: 0.3;
}

.post-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.entry-header {
    margin-bottom: 1rem;
}

.entry-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.entry-title a {
    color: var(--text-light) !important;
    text-decoration: none;
}

.entry-title a:hover {
    color: var(--primary-color) !important;
}

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

.entry-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.entry-excerpt p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-more:hover {
    border-color: var(--primary-color);
}

/* Page Content */
.page-content {
    padding: 3rem 0;
}

.page-content .container {
    max-width: 900px;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-content-inner {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.page-content-inner h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.page-content-inner h2:first-child {
    margin-top: 0;
}

.page-content-inner h3 {
    font-size: 1.25rem;
    color: var(--primary-color) !important;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content-inner ul,
.page-content-inner ol {
    background: rgba(245, 158, 11, 0.05);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.page-content-inner li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.page-content-inner li strong {
    color: var(--text-light);
}

/* Single Post */
.single-post .container {
    max-width: 900px;
}

.article-full {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.article-full .entry-header {
    text-align: center;
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.article-full .entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-full .entry-content {
    padding: 3rem;
}

.article-full .entry-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.article-full .entry-content h3 {
    font-size: 1.25rem;
    color: var(--primary-color) !important;
    margin-top: 2rem;
}

.article-full .entry-content ul,
.article-full .entry-content ol {
    background: rgba(245, 158, 11, 0.05);
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.article-full .entry-content li {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.article-full .entry-content a {
    color: var(--primary-color);
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    color: var(--text-light) !important;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color) !important;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

/* Forms */
input, textarea, select {
    background: var(--bg-glass) !important;
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color) !important;
    color: var(--text-light) !important;
    padding: 1rem 1.25rem !important;
    border-radius: 12px !important;
    font-family: var(--font-main) !important;
    font-size: 1rem !important;
    width: 100%;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2) !important;
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
}

.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
}

.wpcf7-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    color: white !important;
    padding: 1rem 2.5rem !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer;
    font-weight: 700 !important;
}

/* Post Navigation */
.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 576px) {
    .nav-links {
        grid-template-columns: 1fr;
    }
}

.nav-previous,
.nav-next {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: var(--primary-color);
}

.nav-next {
    text-align: right;
}

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

.nav-previous a,
.nav-next a {
    color: var(--text-light) !important;
    font-weight: 700;
}

/* 404 Page */
.error-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-content .error-code {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content .error-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-cta .cta-button span {
        display: none;
    }

    .primary-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .header-container {
        padding: 0.75rem 1rem;
    }

    .primary-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.125rem;
    }

    .primary-menu a {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .page-content-inner {
        padding: 1.5rem;
    }

    .article-full .entry-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .article-full .entry-content {
        padding: 1.5rem;
    }

    .article-full .entry-title {
        font-size: 1.5rem;
    }
}

/* Print */
@media print {
    body {
        background: white !important;
        color: black !important;
    }

    h1, h2, h3 {
        color: black !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

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

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

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}
