#spider {
    padding: 5% 2%;
    background: var(--B_bg);
    color: var(--B_text);
}

.spider-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.spider-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#radar-container {
    background: var(--card_bg);
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-sizing: border-box;
}

#radar-svg {
    display: block;
    margin: 0 auto;
    max-width: 130%;
}

.spider-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.slider-wrapper {
    margin-bottom: 10px;
}

.slider-wrapper:last-child {
    margin-bottom: 0;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--B_text);
}

.slider-value {
    background: var(--B_text);
    color: var(--B_bg);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
}

.modern-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--accent3);
    border: 2px solid var(--B_text);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}



