/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

:root {
    /* Болотная палитра - яркая, но менее кислотная */
    --color-bg: #0d1612;
    --color-surface: #16201a;
    --color-surface-light: #1e2a22;
    --color-accent-primary: #5fb87a;
    --color-accent-secondary: #4a9d6a;
    --color-accent-tertiary: #7bc896;
    --color-text-primary: #e8f5ed;
    --color-text-secondary: #b8dcc8;
    --color-text-muted: #8fc4a3;
    --color-border: rgba(95, 184, 122, 0.3);
    
    /* Типографика */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Crimson Text', Georgia, serif;
    
    /* Размеры */
    --container-max-width: 1400px;
    --section-padding: 120px 0;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Экспериментальный анимированный фон */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(95, 184, 122, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 157, 106, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0d1612 0%, #16201a 50%, #0d1612 100%);
    pointer-events: none;
    z-index: 1;
    animation: bg-pulse 8s ease-in-out infinite;
}

@keyframes bg-pulse {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.9; filter: brightness(1.1); }
}

.moss-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(95, 184, 122, 0.03) 100px,
            rgba(95, 184, 122, 0.03) 200px
        );
    pointer-events: none;
    z-index: 1;
    animation: overlay-shift 20s linear infinite;
}

@keyframes overlay-shift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.floating-particles {
    display: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
}

/* Header - Экспериментальный */
.header {
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    background: rgba(13, 22, 18, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 100;
    border-bottom: 2px solid var(--color-accent-primary);
    box-shadow: 0 4px 30px rgba(95, 184, 122, 0.2);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-accent-primary);
    letter-spacing: 0.2em;
    font-family: var(--font-primary);
    text-transform: uppercase;
    text-shadow: 
        0 0 15px rgba(95, 184, 122, 0.5),
        0 0 30px rgba(95, 184, 122, 0.3);
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { 
        text-shadow: 
            0 0 15px rgba(95, 184, 122, 0.5),
            0 0 30px rgba(95, 184, 122, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 25px rgba(95, 184, 122, 0.7),
            0 0 50px rgba(95, 184, 122, 0.4);
    }
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
}

/* Hero Section - Экспериментальный крупный дизайн */
.hero {
    padding: var(--spacing-xl) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
    background: 
        radial-gradient(ellipse 1200px 800px at 50% 50%, rgba(95, 184, 122, 0.08) 0%, transparent 70%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.title-main {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    color: var(--color-accent-primary);
    font-family: var(--font-primary);
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-transform: uppercase;
    background: linear-gradient(135deg, #5fb87a 0%, #4a9d6a 50%, #7bc896 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-flow 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(95, 184, 122, 0.4));
}

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

.title-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: var(--spacing-sm);
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-secondary);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.section-header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.section-icon-wrapper {
    display: none;
}

.section-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--color-accent-primary);
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(95, 184, 122, 0.4);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* Philosophy Section - Экспериментальный дизайн */
.philosophy {
    background: var(--color-surface);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.philosophy-text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 2;
    color: var(--color-text-secondary);
    font-weight: 300;
    letter-spacing: 0.01em;
    padding: var(--spacing-lg);
    background: rgba(30, 46, 36, 0.5);
    border: 2px solid var(--color-border);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 184, 122, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-text:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-primary);
    box-shadow: 0 20px 60px rgba(95, 184, 122, 0.2);
}

.philosophy-text:hover::before {
    opacity: 1;
}

/* Framework Steps - Экспериментальные blob формы */
.framework {
    background: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.step {
    background: var(--color-surface-light);
    border: 3px solid var(--color-accent-primary);
    border-radius: 50px;
    padding: var(--spacing-xl);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 50px rgba(74, 222, 128, 0.05);
}

.step::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 184, 122, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--color-accent-secondary);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(95, 184, 122, 0.4),
        inset 0 0 50px rgba(95, 184, 122, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.step-letter {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent-primary);
    font-family: var(--font-primary);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-shadow: 
        0 0 15px rgba(95, 184, 122, 0.6),
        0 0 30px rgba(95, 184, 122, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.step:hover .step-letter {
    transform: scale(1.2) rotate(-5deg);
    color: var(--color-accent-secondary);
}

.step-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    flex: 1;
}

.step-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    font-weight: 300;
}

.step-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.detail-item {
    padding: var(--spacing-md);
    background: rgba(10, 20, 16, 0.6);
    border: 2px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.detail-item:hover {
    background: rgba(10, 20, 16, 0.8);
    border-color: var(--color-accent-primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.detail-item strong {
    color: var(--color-accent-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.step-result {
    padding: var(--spacing-lg);
    background: rgba(74, 222, 128, 0.15);
    border: 2px solid var(--color-accent-primary);
    border-radius: 25px;
    color: var(--color-text-primary);
    margin-top: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.step-result strong {
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9em;
    font-weight: 700;
}

.framework-note {
    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
    padding: var(--spacing-lg);
    background: var(--color-surface-light);
    border: 3px solid var(--color-accent-primary);
    border-radius: 40px;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    text-align: center;
    box-shadow: 0 20px 60px rgba(95, 184, 122, 0.2);
}

/* Insights Section - Экспериментальная сетка */
.insights {
    background: var(--color-surface);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    background: var(--color-surface-light);
    border: 2px solid var(--color-border);
    border-radius: 30px;
    padding: var(--spacing-lg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.insight-card:hover {
    transform: scale(1.08) rotate(-2deg);
    border-color: var(--color-accent-primary);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(74, 222, 128, 0.3);
}

.insight-number {
    font-size: 0.85rem;
    color: var(--color-accent-primary);
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(95, 184, 122, 0.5);
}

.insight-card p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    font-size: 0.95rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Cases Section */
.cases {
    background: transparent;
}

.case-study {
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
    background: var(--color-surface-light);
    border: 3px solid var(--color-accent-primary);
    border-radius: 50px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        inset 0 0 60px rgba(74, 222, 128, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.case-study:hover::before {
    opacity: 1;
}

.case-study:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.5),
        0 0 70px rgba(74, 222, 128, 0.3);
    border-color: var(--color-accent-secondary);
}

.case-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--color-accent-primary);
    margin-bottom: var(--spacing-xl);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 0 15px rgba(95, 184, 122, 0.4);
}

.case-step {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--color-border);
}

.case-step:last-child {
    border-bottom: none;
}

.case-step-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-step-letter {
    color: var(--color-accent-primary);
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-primary);
    text-shadow: 0 0 12px rgba(95, 184, 122, 0.6);
}

.case-step-content {
    color: var(--color-text-secondary);
    line-height: 2;
    font-size: 1rem;
    font-weight: 300;
}

.option {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(10, 20, 16, 0.6);
    border-left: 4px solid var(--color-accent-primary);
    border-radius: 15px;
}

.option strong {
    color: var(--color-accent-primary);
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.scoring {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.score-item {
    padding: var(--spacing-md);
    background: rgba(10, 20, 16, 0.6);
    border-radius: 15px;
    border: 2px solid var(--color-border);
}

.score-item strong {
    color: var(--color-accent-primary);
}

.case-conclusion {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: rgba(95, 184, 122, 0.15);
    border: 3px solid var(--color-accent-primary);
    border-radius: 30px;
    color: var(--color-text-primary);
    font-size: 1rem;
    line-height: 2;
    backdrop-filter: blur(10px);
}

.case-conclusion strong {
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9em;
    font-weight: 700;
}

/* Examples Section */
.examples {
    background: var(--color-surface);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.example-card {
    background: var(--color-surface-light);
    border: 2px solid var(--color-border);
    border-radius: 25px;
    padding: var(--spacing-lg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.example-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.example-card:hover::after {
    transform: scaleX(1);
}

.example-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(74, 222, 128, 0.3);
    border-color: var(--color-accent-primary);
}

.example-context,
.example-decision,
.example-outcome {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.example-context strong,
.example-decision strong,
.example-outcome strong {
    color: var(--color-accent-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.examples-actions {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.btn-show-more {
    background: var(--color-surface-light);
    border: 3px solid var(--color-accent-primary);
    color: var(--color-accent-primary);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.btn-show-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-show-more:hover::before {
    width: 500px;
    height: 500px;
}

.btn-show-more:hover {
    background: var(--color-accent-primary);
    color: var(--color-bg);
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 
        0 20px 50px rgba(74, 222, 128, 0.5),
        0 0 40px rgba(74, 222, 128, 0.4);
}

.btn-show-more span,
.btn-show-more svg {
    position: relative;
    z-index: 1;
}

.hidden-example {
    display: none;
}

.hidden-example.show {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.btn-show-more.hidden {
    display: none;
}

/* Conclusion Section */
.conclusion {
    background: var(--color-surface);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.conclusion-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-content p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 2.2;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    border-top: 3px solid var(--color-accent-primary);
    text-align: center;
    background: var(--color-bg);
    box-shadow: 0 -10px 40px rgba(74, 222, 128, 0.2);
}

.footer-text {
    color: var(--color-accent-primary);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(95, 184, 122, 0.5);
}

.footer-subtitle {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

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

    .step:hover {
        transform: scale(1.02);
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .step-letter {
        font-size: 4rem;
    }

    .insights-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 80vh;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }
}

/* Selection - отключено */
::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 7px;
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 10px rgba(95, 184, 122, 0.5);
}

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