/* CSS Variables for theme colors */
:root {
    --color-primary: #6366f1;
    --color-secondary: #a855f7;
    --color-bg: #fff;
    --color-text: #1f2937;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
}
.hero-gradient {
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.network-stat {
    counter-reset: stat;
}
.network-stat::before {
    counter-increment: stat;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6366f1;
    cursor: pointer;
    border: none;
}
.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f3f4f6;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.custom-checkbox:hover input ~ .checkmark {
    background-color: #e5e7eb;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #6366f1;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 24px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: #6366f1;
}
input:checked + .slider:before {
    transform: translateX(24px);
}
.tab-button {
    position: relative;
    z-index: 1;
}
.tab-button.active {
    color: #6366f1;
    font-weight: 500;
}
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6366f1;
}
.terminal {
    background-color: #1e293b;
    color: #e2e8f0;
    font-family: 'Courier New', monospace;
    border-radius: 8px;
    overflow: hidden;
}
.terminal-header {
    background-color: #0f172a;
    padding: 8px 16px;
    display: flex;
    align-items: center;
}
.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
}
.terminal-body {
    padding: 16px;
    line-height: 1.5;
}
.terminal-prompt {
    color: #10b981;
}
.terminal-command {
    color: #e2e8f0;
}
.terminal-output {
    color: #94a3b8;
}
.terminal-highlight {
    color: #6366f1;
}
.ecosystem-card {
    transition: all 0.3s ease;
}
.ecosystem-card:hover {
    transform: translateY(-5px);
}
.token-distribution-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.token-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.token-legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
} 
