/* accent-tiktok.css – Strong TikTok theme */
:root {
    --accent-bg: linear-gradient(135deg, rgba(34, 211, 238, 0.25) 0%, rgba(236, 72, 153, 0.20) 100%);
    --accent-border: rgba(34, 211, 238, 0.7);
    --accent-text: #22d3ee;
    --accent-solid: #22d3ee;
}

/* Make the highlight card pop */
.result-card.highlight {
    background: var(--accent-bg) !important;
    border-color: var(--accent-border) !important;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
}
.result-card.highlight .result-value {
    color: var(--accent-text) !important;
}

/* Color the hero label */
.hero-label {
    border-color: rgba(34, 211, 238, 0.4) !important;
    color: #22d3ee !important;
}

/* Slider thumb */
input[type="range"]::-webkit-slider-thumb {
    background: #22d3ee !important;
}
input[type="range"]::-moz-range-thumb {
    background: #22d3ee !important;
}

/* Target value */
.target-value {
    color: #22d3ee !important;
}
