/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    /* Colors */
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.06);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);

    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-dark: #4f46e5;
    --color-primary-glow: rgba(99, 102, 241, 0.3);

    --color-accent: #a78bfa;
    --color-accent-2: #38bdf8;
    --color-accent-3: #f472b6;

    --color-text: #f1f5f9;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    --color-success: #22c55e;
    --color-error: #ef4444;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   PARTICLE CANVAS
   ========================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================
   FLOATING GEOMETRIC SHAPES
   ========================================== */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    border-color: rgba(99, 102, 241, 0.08);
    transform: rotate(45deg);
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: -4s;
    border-color: rgba(167, 139, 250, 0.08);
    border-radius: 50%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -8s;
    border-color: rgba(56, 189, 248, 0.06);
    transform: rotate(30deg);
}

.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation-delay: -12s;
    border-color: rgba(244, 114, 182, 0.08);
    border-radius: 50%;
}

.shape-5 {
    width: 100px;
    height: 100px;
    bottom: 40%;
    right: 30%;
    animation-delay: -16s;
    border-color: rgba(99, 102, 241, 0.05);
    transform: rotate(60deg);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.7; }
    75% { transform: translateY(-40px) rotate(270deg); opacity: 0.9; }
}

/* ==========================================
   GLOW ORBS
   ========================================== */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: orbPulse 8s ease-in-out infinite alternate;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: -3s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -6s;
}

@keyframes orbPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* ==========================================
   MAIN CONTAINER
   ========================================== */
.main-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl);
    min-height: 100vh;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding-top: var(--space-4xl);
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2xl);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent), var(--color-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.subtitle-highlight {
    color: var(--color-primary-light);
    font-weight: 600;
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */
.countdown {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    min-width: 72px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.countdown-number::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%);
    pointer-events: none;
}

.countdown-number.flip {
    animation: flipNumber 0.6s ease-in-out;
}

@keyframes flipNumber {
    0% { transform: scaleY(1); }
    50% { transform: scaleY(0.8); color: var(--color-primary-light); }
    100% { transform: scaleY(1); }
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-xs);
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-muted);
    animation: separatorPulse 1s ease-in-out infinite;
    padding-bottom: 20px;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================
   PROGRESS BAR
   ========================================== */
.progress-section {
    width: 100%;
    max-width: 400px;
    margin-bottom: var(--space-2xl);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.progress-percent {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-primary-light);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--color-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-accent-2));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    animation: progressGradient 3s ease-in-out infinite, progressFillIn 2s ease-out 1.5s forwards;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--color-accent-2);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

@keyframes progressGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes progressFillIn {
    to { width: 72%; }
}

/* ==========================================
   CTA BUTTONS
   ========================================== */
.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary span, .btn-primary i {
    position: relative;
    z-index: 1;
}

.btn-primary i {
    transition: transform var(--transition-base);
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: var(--color-surface);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    color: var(--color-text);
    transform: translateY(-2px);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: var(--space-4xl) 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.section-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-hover), transparent);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.about-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-card:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
}

.about-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(167,139,250,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary-light);
    transition: all var(--transition-base);
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: var(--space-4xl) 0;
}

.contact-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    font-size: 1.05rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-base);
    z-index: 1;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
    outline: none;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 16px;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

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

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--color-primary);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.input-wrapper:has(input:focus) i,
.input-wrapper:has(textarea:focus) i {
    color: var(--color-primary-light);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-wrapper input:focus ~ .input-focus-line,
.input-wrapper textarea:focus ~ .input-focus-line {
    width: 100%;
    left: 0;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--color-primary-glow);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit .btn-text,
.btn-submit .btn-icon {
    position: relative;
    z-index: 1;
}

.btn-submit .btn-loader,
.btn-submit .btn-success {
    position: absolute;
    z-index: 1;
    display: none;
}

.btn-submit.loading .btn-text,
.btn-submit.loading .btn-icon {
    visibility: hidden;
}

.btn-submit.loading .btn-loader {
    display: block;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-icon {
    visibility: hidden;
}

.btn-submit.success .btn-loader {
    display: none;
}

.btn-submit.success .btn-success {
    display: block;
}

.btn-submit.success {
    background: linear-gradient(135deg, var(--color-success), #16a34a);
}

/* ==========================================
   SOCIAL SECTION
   ========================================== */
.social-section {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl) 0;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.social-link:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

.social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--color-bg-secondary);
    color: var(--color-text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border);
}

.social-link:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

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

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-spring);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 3rem;
    color: var(--color-success);
    margin-bottom: var(--space-lg);
    animation: modalBounce 0.6s ease-out;
}

@keyframes modalBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.modal-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.modal-content .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   CUSTOM CURSOR TRAIL (optional visual)
   ========================================== */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .main-container {
        padding: var(--space-md);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .countdown {
        gap: var(--space-sm);
    }

    .countdown-number {
        font-size: 1.8rem;
        min-width: 56px;
        padding: var(--space-xs) var(--space-sm);
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        justify-content: center;
    }
}

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

    .countdown-number {
        font-size: 1.4rem;
        min-width: 48px;
    }

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

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

/* ==========================================
   SELECTION STYLE
   ========================================== */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--color-text);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-border-hover);
    border-radius: var(--radius-full);
}

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